-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Description
graphql-js/src/utilities/getIntrospectionQuery.ts
Lines 70 to 72 in 04e948b
queryType { name } | |
mutationType { name } | |
subscriptionType { name } |
The query needs to select kind
for each of these in order for the result to match the defined IntrospectionQuery
type
graphql-js/src/utilities/getIntrospectionQuery.ts
Lines 172 to 178 in 04e948b
readonly queryType: IntrospectionNamedTypeRef<IntrospectionObjectType>; | |
readonly mutationType: Maybe< | |
IntrospectionNamedTypeRef<IntrospectionObjectType> | |
>; | |
readonly subscriptionType: Maybe< | |
IntrospectionNamedTypeRef<IntrospectionObjectType> | |
>; |
graphql-js/src/utilities/getIntrospectionQuery.ts
Lines 293 to 298 in 04e948b
export interface IntrospectionNamedTypeRef< | |
T extends IntrospectionType = IntrospectionType, | |
> { | |
readonly kind: T['kind']; | |
readonly name: string; | |
} |
Metadata
Metadata
Assignees
Labels
No labels