Interface GraphQLBadGatewayError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLBadGatewayError extends GraphQLErrorObject

Returned when a server-side problem is caused by scaling infrastructure resources.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.


Example to create an instance using the builder pattern

     GraphQLBadGatewayError graphQLBadGatewayError = GraphQLBadGatewayError.builder()
             .build()