GraphQL Client
Execute GraphQL queries against a GraphQL API, allowing you to fetch exactly the data you need using queries and variables.
Categories: Helpers
Type: graphQl/v1
Actions
Raw Query
Name: rawQuery
Run a raw query to a GraphQL endpoint.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| graphQlEndpoint | GraphQL Endpoint | STRING | The endpoint where GraphQL requests will be sent. | true |
| headers | Headers | OBJECT Properties{} | Headers that will be sent in the HTTP request alongside the GraphQL query. | false |
| variables | Variables | OBJECT Properties{} | Variables that will be sent with the GraphQL query. | false |
| query | Query | STRING | Query that will be sent to the GraphQL endpoint. | false |
Example JSON Structure
{
"label" : "Raw Query",
"name" : "rawQuery",
"parameters" : {
"graphQlEndpoint" : "",
"headers" : { },
"variables" : { },
"query" : ""
},
"type" : "graphQl/v1/rawQuery"
}Output
The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.
How is this guide?
Last updated on