From a4e63150dfdabbe757aae8db3d6eced34563546b Mon Sep 17 00:00:00 2001 From: jonapgar-groupby <128390641+jonapgar-groupby@users.noreply.github.com> Date: Fri, 9 Jun 2023 12:45:23 -0400 Subject: [PATCH] getIntrospectionQuery should select kind for all types Fixes #3909 --- src/utilities/getIntrospectionQuery.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utilities/getIntrospectionQuery.ts b/src/utilities/getIntrospectionQuery.ts index 12c2aa6404..3da1dcd702 100644 --- a/src/utilities/getIntrospectionQuery.ts +++ b/src/utilities/getIntrospectionQuery.ts @@ -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 }