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 extensions data for each error as defined in the GraphQL spec:
extensions
{ "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" } } ] }
See initial discussion in #140
The text was updated successfully, but these errors were encountered:
We discussed returning innerThrowable and possibly explanatoryText as extensions.
innerThrowable
explanatoryText
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Add support for the
extensions
data for each error as defined in the GraphQL spec:See initial discussion in #140
The text was updated successfully, but these errors were encountered: