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
testing master with a sdl schema, looks like i can get __typename on unions.
schema { query: Queries } type Queries { getUsers: [User!]! } type User { id: String! role: Role! } union Role = Admin | Member type Admin { y: Int! } type Member { x: Int! }
query:
query { getUsers { role { ... on Member { __typename x } ... on Admin { y } } } }
The text was updated successfully, but these errors were encountered:
Ah hmm that is probably some implicit type that I forgot to include, thanks for catching it!
Sorry, something went wrong.
No branches or pull requests
testing master with a sdl schema,
looks like i can get __typename on unions.
query:
The text was updated successfully, but these errors were encountered: