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
Add support for the locations data for each error as defined in the GraphQL spec:
locations
{ "errors": [ { "message": "Name for character with ID 1002 could not be fetched.", "locations": [ { "line": 6, "column": 7 } ], "path": [ "hero", "heroFriends", 1, "name" ], "extensions": { "code": "CAN_NOT_FETCH_BY_ID", "timestamp": "Fri Feb 9 14:33:09 UTC 2018" } } ] }
This will require extracting the line and column information of each field when parsing queries. See initial discussion in #140
The text was updated successfully, but these errors were encountered:
Closed by #168
Sorry, something went wrong.
No branches or pull requests
Add support for the
locations
data for each error as defined in the GraphQL spec:This will require extracting the line and column information of each field when parsing queries.
See initial discussion in #140
The text was updated successfully, but these errors were encountered: