Interface GraphQLResponse
public interface GraphQLResponse
error
is present in the response only if the GraphQL query was unsuccessful.
Example to create an instance using the builder pattern
GraphQLResponse graphQLResponse = GraphQLResponse.builder()
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic GraphQLResponseBuilder
builder()
builder factory method for GraphQLResponsestatic GraphQLResponseBuilder
builder
(GraphQLResponse template) create builder for GraphQLResponse instancestatic GraphQLResponse
deepCopy
(GraphQLResponse template) factory method to create a deep copy of GraphQLResponsegetData()
JSON object that contains the results of a GraphQL query.@Valid List<GraphQLError>
Errors that the GraphQL query returns.static GraphQLResponse
of()
factory methodstatic GraphQLResponse
of
(GraphQLResponse template) factory method to create a shallow copy GraphQLResponsevoid
JSON object that contains the results of a GraphQL query.void
setErrors
(GraphQLError... errors) Errors that the GraphQL query returns.void
setErrors
(List<GraphQLError> errors) Errors that the GraphQL query returns.static com.fasterxml.jackson.core.type.TypeReference<GraphQLResponse>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withGraphQLResponse
(Function<GraphQLResponse, T> helper) accessor map function
-
Method Details
-
getData
Object getData()JSON object that contains the results of a GraphQL query.
- Returns:
- data
-
getErrors
Errors that the GraphQL query returns.
- Returns:
- errors
-
setData
JSON object that contains the results of a GraphQL query.
- Parameters:
data
- value to be set
-
setErrors
Errors that the GraphQL query returns.
- Parameters:
errors
- values to be set
-
setErrors
Errors that the GraphQL query returns.
- Parameters:
errors
- values to be set
-
of
factory method- Returns:
- instance of GraphQLResponse
-
of
factory method to create a shallow copy GraphQLResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of GraphQLResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for GraphQLResponse- Returns:
- builder
-
builder
create builder for GraphQLResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withGraphQLResponse
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-