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
Currently, when queries return interfaces all possible fields are selected: e.g. Schema:
type Query { named: Named } type Person implements Named { name: String dogs: [Dog] } type Dog implements Named { name: String owner: Person } interface Named { name: String }
Will generate query:
query Named { named: { name ... on Person { pets { name } } ... on Dog { owner { name } } } }
But if we disable this new option (on @GraphQLQuery) it would generate just
@GraphQLQuery
query Named { named: { name } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, when queries return interfaces all possible fields are selected: e.g.
Schema:
Will generate query:
But if we disable this new option (on
@GraphQLQuery
) it would generate justThe text was updated successfully, but these errors were encountered: