We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Given the example schema:
type Query { hello: String! }
When you run a query for an unknown type
{ __type(name:"Bar") { kind name description } }
I would expect to get
{ "data": { "__type": null } }
Instead I get
{ "data": {} }