Interface GraphQLEnumKeyDoesNotExistError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLEnumKeyDoesNotExistErrorImpl

Returned when an AttributeEnumType or AttributeLocalizedEnumType already contains a value with the given key.

The error is returned as a failed response to the Change the key of an EnumValue update action.


Example to create an instance using the builder pattern

     GraphQLEnumKeyDoesNotExistError graphQLEnumKeyDoesNotExistError = GraphQLEnumKeyDoesNotExistError.builder()
             .conflictingEnumKey("{conflictingEnumKey}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()