Interface GraphQLEnumValueIsUsedError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLEnumValueIsUsedError extends GraphQLErrorObject

Returned when an enum value cannot be removed from an Attribute as it is being used by a Product.

The error is returned as a failed response to the Remove EnumValues from AttributeDefinition update action.


Example to create an instance using the builder pattern

     GraphQLEnumValueIsUsedError graphQLEnumValueIsUsedError = GraphQLEnumValueIsUsedError.builder()
             .build()