Returned when an AttributeEnumType or AttributeLocalizedEnumType contains a key that already exists.

interface GraphQLEnumKeyAlreadyExistsError {
    code: "EnumKeyAlreadyExists";
    conflictingAttributeName: string;
    conflictingEnumKey: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "EnumKeyAlreadyExists"
conflictingAttributeName: string

Name of the conflicting Attribute.

conflictingEnumKey: string

Conflicting enum key.

Generated using TypeDoc