HTTP: GraphQL Requests
not planned
Nathan Waters
Not high on priority list, but an option to perform raw GraqhQL queries within a HTTP request would be neat.
Log In
Tereza Klobouckova
Merged in a post:
GraphQL Format for HTTP requests
Alejandro Pinzón
Add support for GraphQL formatting for HTTP requests
Tereza Klobouckova
not planned
This is already supported since you can define any content type you like
Body: Raw
Content-Type: application/graphql
Body: your GraphQL query
Tereza Klobouckova
Merged in a post:
GraphQL
Alexey Dodonov
HTTP requests to GraphQL servers
----
Bruno Thomé
this is already supported since you can define any content type you like
Body: Raw
Content-Type: application/graphql
Body: your GraphQL query
alternatively, you can use application/json and stringify your graphQL query which will be accepted by most APIs
Joe Sasson
If there would be some kind of nested selector options similar to the mapping of nested rest resources, thag would be dope
akash.paul@integromat.com
Hello Members!
You can use the HTTP make a request module as shown below you will need to use the URL shown below.
Here is the JSON data structure that I used.
{
"query": "query {\nassets (ids: [78526725]) {\nid\npublic_url\n}\n}",
"variables": {},
"operationName": null
}
And here is the response that I got in inline 3 image
Please note that the ID is the file asset ID as shown in inline 4 image
Kind regards