Interface GraphQLPendingOperationError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLPendingOperationError extends GraphQLErrorObject

Returned when a previous conflicting operation is still pending and needs to finish before the request can succeed.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable. If the error persists, report it using the Support Portal.


Example to create an instance using the builder pattern

     GraphQLPendingOperationError graphQLPendingOperationError = GraphQLPendingOperationError.builder()
             .build()