Skip to content

Commit

Permalink
getIntrospectionQuery should select kind for all types
Browse files Browse the repository at this point in the history
  • Loading branch information
jonapgar-groupby committed Jun 9, 2023
1 parent 04e948b commit a4e6315
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utilities/getIntrospectionQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ export function getIntrospectionQuery(options?: IntrospectionOptions): string {
query IntrospectionQuery {
__schema {
${schemaDescription}
queryType { name }
mutationType { name }
subscriptionType { name }
queryType { name kind }
mutationType { name kind }
subscriptionType { name kind }
types {
...FullType
}
Expand Down

0 comments on commit a4e6315

Please sign in to comment.