We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Queries with differing arguments for the same field should not be allowed.
An example of a query that should fail (see swapi example)
query AllFilms { allFilms(first: 1) { totalCount } allFilms(first: 2) { pageInfo { hasNextPage } } }
An example of a query that should succeed (see swapi example)
query AllFilms { allFilms(first: 1) { totalCount } allFilms(first: 1) { pageInfo { hasNextPage } } }
If #168 gets merged, merge_selections would be a good place to do the check for conflicting arguments.
merge_selections
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Queries with differing arguments for the same field should not be allowed.
An example of a query that should fail (see swapi example)
An example of a query that should succeed (see swapi example)
If #168 gets merged,
merge_selections
would be a good place to do the check for conflicting arguments.The text was updated successfully, but these errors were encountered: