In IntrospectionQueryTypeQuery section, the query has a queryType key in __schema:
query IntrospectionQueryTypeQuery {
__schema {
queryType {
name
}
}
}
But response with query key in __schema:
{
"__schema": {
"query": {
"name": "Query"
}
}
}
Is there any reasons for Inconsistent keys or just a typo here?