We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Related to: #71, some queries are not matching the ones from graphql-js
graphql-js
Current
query Foo { field } mutation Bar { field }
Should be
query Foo { ...Foo } fragment Foo on Type { field }
{ complicatedArgs { complexArgField(complexArg: { requiredField: false }) } }
{ complicatedArgs { complexArgField(complexArg: { requiredField: true, intField: 4 }) } }
The text was updated successfully, but these errors were encountered:
validator
validation rules
updates queries to match graphql-js ones - #78
21ee236
resolved on: #79
Sorry, something went wrong.
No branches or pull requests
Related to: #71, some queries are not matching the ones from
graphql-js
Current
Should be
Current
Should be
The text was updated successfully, but these errors were encountered: