Uses of Interface
org.springframework.graphql.client.ClientGraphQlResponse
Packages that use ClientGraphQlResponse
-
Uses of ClientGraphQlResponse in org.springframework.graphql.client
Methods in org.springframework.graphql.client that return ClientGraphQlResponseModifier and TypeMethodDescriptionDgsGraphQlClient.RequestSpec.executeSync()
CreateGraphQLQueryRequest
, serialize it to a String document to send, and delegate to the wrappedGraphQlClient
.GraphQlClient.RequestSpec.executeSync()
Execute request with a single response, e.g.FieldAccessException.getResponse()
Return the [@code GraphQlResponse} for which the error ouccrred.default ClientGraphQlResponse
SyncGraphQlClientInterceptor.intercept
(ClientGraphQlRequest request, SyncGraphQlClientInterceptor.Chain chain) Intercept a single response request (query and mutation operations), and delegate to the rest of the chain including other interceptors followed by theSyncGraphQlTransport
.SyncGraphQlClientInterceptor.Chain.next
(ClientGraphQlRequest request) Delegate to the rest of the chain to perform the request.Methods in org.springframework.graphql.client that return types with arguments of type ClientGraphQlResponseModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ClientGraphQlResponse>
DgsGraphQlClient.RequestSpec.execute()
CreateGraphQLQueryRequest
, serialize it to a String document to send, and delegate to the wrappedGraphQlClient
.reactor.core.publisher.Mono<ClientGraphQlResponse>
GraphQlClient.RequestSpec.execute()
Execute request with a single response, e.g.reactor.core.publisher.Flux<ClientGraphQlResponse>
DgsGraphQlClient.RequestSpec.executeSubscription()
CreateGraphQLQueryRequest
, serialize it to a String document to send, and delegate to the wrappedGraphQlClient
.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 theGraphQlTransport
.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 theGraphQlTransport
.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.Constructors in org.springframework.graphql.client with parameters of type ClientGraphQlResponseModifierConstructorDescriptionFieldAccessException
(ClientGraphQlRequest request, ClientGraphQlResponse response, ClientResponseField field) Constructor with the request and response, and the accessed field.