Closed sudheerj closed 7 years ago
@sudheerj GraphQL queries aren't supported right now, but we've been thinking about adding support for this. We're tracking it here: https://github.com/postmanlabs/postman-app-support/issues/1669.
POSTMAN will support graphql queries with the header Content-Type:application/graphql.But there is no way to provide dynamic variables just like Graphiql provides.
What do you mean by 'no way'??
I mean there is no query variable section with in POSTMAN just like GraphiQL
Late to the party, but until we have native support for GraphQL in Postman, dynamic query variables can be passed inline. Using the example from the original post:
{ "query": "{ GetAccounts(filter: { region: \"APAC\" } ) { account_name } }" }
This works well for mutations as well.
As per POC on Graphql language I'm trying to test various types of queries in POSTMAN.But I didn't find the way to add below dynamic queries in POSTMAN.If it is not supported by POSTMAN then how can we build local graphiql with our own schema.
Example,