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
The below query
query Artist { node(id: "QXJ0aXN0OjMyM2VkOTc0LThiZjYtNGY1NC05NTI1LWI3NzRhNjU5ZjgwNQ==") { ... on Artist { relationships { __typename } } } }
when used on https://graphbrainz.herokuapp.com/ fails with
{ "errors": [ { "message": "__typename-rels is not a valid inc parameter for the artist resource.", "locations": [ { "line": 4, "column": 7 } ], "path": [ "node", "relationships" ] } ], "data": { "node": { "relationships": null } } }
The problem seems to come from the __typename meta-field that is not correctly understood: https://spec.graphql.org/draft/#sec-Type-Name-Introspection
__typename
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The below query
when used on https://graphbrainz.herokuapp.com/ fails with
The problem seems to come from the
__typename
meta-field that is not correctly understood: https://spec.graphql.org/draft/#sec-Type-Name-IntrospectionThe text was updated successfully, but these errors were encountered: