Package | Description |
---|---|
org.springframework.graphql.client |
This package contains a
GraphQlClient
along with HTTP and WebSocket extensions. |
Modifier and Type | Method and Description |
---|---|
ClientGraphQlResponse |
FieldAccessException.getResponse()
Return the [@code GraphQlResponse} for which the error ouccrred.
|
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<ClientGraphQlResponse> |
GraphQlClient.RequestSpec.execute()
Execute request with a single response, e.g.
|
reactor.core.publisher.Flux<ClientGraphQlResponse> |
GraphQlClient.RequestSpec.executeSubscription()
Execute a "subscription" request and return a stream of responses.
|
default reactor.core.publisher.Mono<ClientGraphQlResponse> |
GraphQlClientInterceptor.intercept(ClientGraphQlRequest request,
GraphQlClientInterceptor.Chain chain)
Intercept a single response request (query and mutation operations) and
delegate to the rest of the chain including other interceptors followed
by the
GraphQlTransport . |
default reactor.core.publisher.Flux<ClientGraphQlResponse> |
GraphQlClientInterceptor.interceptSubscription(ClientGraphQlRequest request,
GraphQlClientInterceptor.SubscriptionChain chain)
Intercept a subscription request and delegate to the rest of the chain
including other interceptors followed by the
GraphQlTransport . |
reactor.core.publisher.Mono<ClientGraphQlResponse> |
GraphQlClientInterceptor.Chain.next(ClientGraphQlRequest request)
Delegate to the rest of the chain to perform the request.
|
reactor.core.publisher.Flux<ClientGraphQlResponse> |
GraphQlClientInterceptor.SubscriptionChain.next(ClientGraphQlRequest request)
Delegate to the rest of the chain to perform the request.
|
Constructor and Description |
---|
FieldAccessException(ClientGraphQlRequest request,
ClientGraphQlResponse response,
ClientResponseField field)
Constructor with the request and response, and the accessed field.
|