Returned when an AttributeEnumType or AttributeLocalizedEnumType contains duplicate keys.

interface GraphQLDuplicateEnumValuesError {
    code: "DuplicateEnumValues";
    duplicates: string[];
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "DuplicateEnumValues"
duplicates: string[]

Duplicate keys.

Generated using TypeDoc