Member since
11-27-2023
11
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1936 | 12-07-2023 01:39 AM |
12-11-2023
03:27 AM
@srikanth11 Okta Auth JS is all about providing the core functionalities for authentication, giving developers control to implement their own authentication flows. Okta Sign-In Widget harnesses the capabilities of Okta Auth JS but emphasizes building a ready-made, customizable visual interface for authentication. Auth JS empowers developers with authentication capabilities, while the Sign-In Widget streamlines the process by offering a pre-built visual experience utilizing those functionalities.
... View more
12-11-2023
01:56 AM
Hello, I'm using InvokeHTTP for fetching recods from my CouchDB. I have recieved a JSON. JSON Format: { "total_rows" : 3, "offset" : 0, "rows" : [ { "id" : "XXXXXXXXXX", "key" : "XXXXXXXXXX", "value" : { "rev" : "XXXXXXXXXX" }, "doc" : { "_id" : "XXXXXXXXXX", "_rev" : "XXXXXXXXXX", "Id" : "3", "name" : "ali", "gender" : "Male", "position" : "soft", "salary" : "3333", "contact" : "2222", "address" : "w222" } } ] } After that i will use EvaluateJSONPath Now, I want to make fetch all the values from the database dynamically and then POST to my GraphQL. The Problem that I'm faceing values dynamically is not being fetched. Although I can POST the data by using Only One Record like as following: By using Single records I can POST the data but how can I manage the Multiple JSON records dynmaically ready for GraphQL mutation query? Advance Thanks.
... View more
12-07-2023
04:50 AM
1 Kudo
@Fayza Nice work. If you can, you should try to remove ReplaceText. You should be able to get the payload exactly how you want it in text input box for GenerateFlowFile.
... View more
12-06-2023
07:03 AM
Hi @Fayza , You need to setup the Content-Type as required by the API. There should be "Request Content-Type" property where you can set the value. Also any custom header values can be added as Dynamic Property. The invokehttp processor should be very flexible to accommodate the different API requirements and request types.
... View more
12-06-2023
02:34 AM
If you want to GET the data form the GraphQL by using CURL: Then Choose InvokeHTTP Processor. HTTP Method: GET HTTP URL: Your URL?query={queryUser{attribute1,attribute2,attribute3}} Socket Connect Timeout : 5 mins By this you can get data in the Response Relationship.
... View more