-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Locally run graphiql with custom schema #259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm not sure what Just for your information, for supplying your own |
POSTMAN is a GUI platform to make complex HTTP requests for API workflow. I enabled graphIql: true parameter in the server code.So I can query through GraphIql editor easily. |
I'm sorry, but I have zero knowledge about |
Even it didn't workout with GraphiQL.I just need how to pass JSON parameter as String from GraphiQL IDE.Those examples won't explain me on how to pass JSON string values. I just need on how to pass below JSON in the form of String.
|
I think this is then a similar question to #262 - closing this one in favor of that one. Feel free to reopen if you feel otherwise. |
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,
query GetAccounts($filter: AccountsFilter) {
accounts(filter: $filter) {
account_name
}
}
{
"filter": {
"region": "APAC",
"code": {"in": [ "HK1", "SG1" ]},
"account_number": {"nin": [ "1" ]}
}
}
The text was updated successfully, but these errors were encountered: