Interface GraphQLInvalidOperationError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLInvalidOperationError extends GraphQLErrorObject

Returned when the resources involved in the request are not in a valid state for the operation.

The client application should validate the constraints described in the error message before sending the request.


Example to create an instance using the builder pattern

     GraphQLInvalidOperationError graphQLInvalidOperationError = GraphQLInvalidOperationError.builder()
             .build()