Interface GraphQLEnumKeyAlreadyExistsError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLEnumKeyAlreadyExistsErrorImpl

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


Example to create an instance using the builder pattern

     GraphQLEnumKeyAlreadyExistsError graphQLEnumKeyAlreadyExistsError = GraphQLEnumKeyAlreadyExistsError.builder()
             .conflictingEnumKey("{conflictingEnumKey}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()