Interface GraphQLTooManyRequestsError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLTooManyRequestsError extends GraphQLErrorObject

Returned when the Query Records request exceeds the rate limit.

Reduce the date range and resource types in your query to minimize the token usage, or retry the request after some time (indicated in the Retry-After header).


Example to create an instance using the builder pattern

     GraphQLTooManyRequestsError graphQLTooManyRequestsError = GraphQLTooManyRequestsError.builder()
             .build()