Interface GraphQLBulkOperationMaxItemsExceededError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLBulkOperationMaxItemsExceededError extends GraphQLErrorObject

Returned when a bulk request contains more items than the allowed maximum.

Reduce the number of items in the request to at most limit and retry.


Example to create an instance using the builder pattern

     GraphQLBulkOperationMaxItemsExceededError graphQLBulkOperationMaxItemsExceededError = GraphQLBulkOperationMaxItemsExceededError.builder()
             .limit(0.3)
             .provided(0.3)
             .build()