Skip to content

Commit a4e6315

Browse files
getIntrospectionQuery should select kind for all types
Fixes #3909
1 parent 04e948b commit a4e6315

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utilities/getIntrospectionQuery.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ export function getIntrospectionQuery(options?: IntrospectionOptions): string {
6767
query IntrospectionQuery {
6868
__schema {
6969
${schemaDescription}
70-
queryType { name }
71-
mutationType { name }
72-
subscriptionType { name }
70+
queryType { name kind }
71+
mutationType { name kind }
72+
subscriptionType { name kind }
7373
types {
7474
...FullType
7575
}

0 commit comments

Comments
 (0)