Interface IntrospectionResult

A simplified, hand-written introspection result type.

interface IntrospectionResult {
    __schema: {
        queryType: { name: string };
        mutationType?: null | { name: string };
        subscriptionType?: null | { name: string };
        types: readonly IntrospectionType[];
        directives: readonly IntrospectionDirective[];
    };
}

Properties

Properties

__schema: {
    queryType: { name: string };
    mutationType?: null | { name: string };
    subscriptionType?: null | { name: string };
    types: readonly IntrospectionType[];
    directives: readonly IntrospectionDirective[];
}