Interface GraphQLAttributeNameDoesNotExistError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLAttributeNameDoesNotExistError extends GraphQLErrorObject

Returned when an AttributeDefinition does not exist for an Attribute name.

The error is returned as a failed response to the Change AttributeDefinition Name update action.


Example to create an instance using the builder pattern

     GraphQLAttributeNameDoesNotExistError graphQLAttributeNameDoesNotExistError = GraphQLAttributeNameDoesNotExistError.builder()
             .invalidAttributeName("{invalidAttributeName}")
             .build()