Interface IntrospectionField

interface IntrospectionField {
    name: string;
    description?: null | string;
    args: readonly IntrospectionInputValue[];
    type: IntrospectionTypeRef;
    isDeprecated: boolean;
    deprecationReason?: null | string;
}

Properties

name: string
description?: null | string
args: readonly IntrospectionInputValue[]
isDeprecated: boolean
deprecationReason?: null | string