Interface GraphQLQueryTimedOutError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLQueryTimedOutError extends GraphQLErrorObject

Returned when the query times out.

If a query constantly times out, please check if it follows the performance best practices.


Example to create an instance using the builder pattern

     GraphQLQueryTimedOutError graphQLQueryTimedOutError = GraphQLQueryTimedOutError.builder()
             .build()