-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
getIntrospectionQuery should select kind for all types #3910
Conversation
|
✅ Deploy Preview for compassionate-pike-271cb3 ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
I think this is a legitimate bug. I guess the current behavior is working as is because the root types in a valid schema are always object types, but then we should have a different typing. I am fine with either changing the typing on the root types to something specific where the To proceed we will need to:
|
I know this is from a while back, thank you for your contribution and apologies for the delay! We are currently trying to clean up our PR backlog, let us know if you are still interested in working on this! |
Fixed in #4222 |
Supersedes graphql/graphql-js#3910 Fixes graphql/graphql-js#3909 Fixes graphql/graphql-js#3409 This puts the Selection-set in line with the expected type
Prior to this change, the result when using the
getIntrospectionQuery
does not match the declaredIntrospectionQuery
type.Fixes #3909