| Package | Description |
|---|---|
| org.springframework.graphql |
Top level abstractions for processing GraphQL requests.
|
| org.springframework.graphql.client |
This package contains a
GraphQlClient
along with HTTP and WebSocket extensions. |
| org.springframework.graphql.support |
Support classes for Spring GraphQL.
|
| Modifier and Type | Method and Description |
|---|---|
ResponseError |
ResponseField.getError()
Deprecated.
since 1.0.3 in favor of
ResponseField.getErrors() |
| Modifier and Type | Method and Description |
|---|---|
List<ResponseError> |
GraphQlResponse.getErrors()
Return errors included in the response.
|
List<ResponseError> |
ResponseField.getErrors()
Return all errors that have a path, and it is at above, or below the field path.
|
| Modifier and Type | Method and Description |
|---|---|
List<ResponseError> |
SubscriptionErrorException.getErrors()
Return the errors contained in the GraphQL over WebSocket "errors" message.
|
| Constructor and Description |
|---|
SubscriptionErrorException(GraphQlRequest request,
List<ResponseError> errors)
Constructor with the request details and the errors listed in the payload
of the
"errors" message. |
| Modifier and Type | Method and Description |
|---|---|
List<ResponseError> |
DefaultExecutionGraphQlResponse.getErrors() |