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
When having something like:
query{ ...countrysightings } fragment countrysightings on Query{ topCountrySightings{ country numOccurrences state } }
Intended outcome: We should get the same result as if we called
{ "data": { "topCountrySightings": [ { "country": "us", "numOccurrences": 8021, "state": "" }, { "country": "", "numOccurrences": 860, "state": "" }, { "country": "ca", "numOccurrences": 293, "state": "" }, { "country": "gb", "numOccurrences": 69, "state": "" }, { "country": "au", "numOccurrences": 46, "state": "" }, { "country": "de", "numOccurrences": 9, "state": "" } ] } }
Actual outcome: An internal server error occurs. The above mentioned query also works in Playground so it should not be a GraphQL syntax issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When having something like:
Intended outcome:
We should get the same result as if we called
Actual outcome:
An internal server error occurs.
The above mentioned query also works in Playground so it should not be a GraphQL syntax issue.
The text was updated successfully, but these errors were encountered: