Interface GraphQLContentTooLargeError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLContentTooLargeError extends GraphQLErrorObject

Returned when the request results in too much data being returned from the API. Adjust the request query to reduce the size of the data returned.


Example to create an instance using the builder pattern

     GraphQLContentTooLargeError graphQLContentTooLargeError = GraphQLContentTooLargeError.builder()
             .build()