Interface GraphQLExtensionBadResponseError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLExtensionBadResponseErrorImpl

Returned when the response from the API Extension could not be parsed successfully (such as a 500 HTTP status code, or an invalid JSON response).


Example to create an instance using the builder pattern

     GraphQLExtensionBadResponseError graphQLExtensionBadResponseError = GraphQLExtensionBadResponseError.builder()
             .plusExtensionErrors(extensionErrorsBuilder -> extensionErrorsBuilder)
             .extensionId("{extensionId}")
             .build()