Interface IntrospectionEnumValue

interface IntrospectionEnumValue {
    name: string;
    description?: null | string;
    isDeprecated: boolean;
    deprecationReason?: null | string;
}

Properties

name: string
description?: null | string
isDeprecated: boolean
deprecationReason?: null | string