Interface IntrospectionResult
interface IntrospectionResult { __schema: { queryType: { name: string }; mutationType?: null | { name: string }; subscriptionType?: null | { name: string }; types: readonly IntrospectionType[]; directives: readonly IntrospectionDirective[]; };} Properties
Readonly__schema
__schema: { queryType: { name: string }; mutationType?: null | { name: string }; subscriptionType?: null | { name: string }; types: readonly IntrospectionType[]; directives: readonly IntrospectionDirective[];}
A simplified, hand-written introspection result type.