Uses of Interface
org.springframework.graphql.GraphQlResponse
Packages that use GraphQlResponse
Package
Description
Top level abstractions for processing GraphQL requests.
This package contains a
GraphQlClient
along with HTTP and WebSocket extensions.Server transports handling GraphQL requests over the HTTP, WebSocket, and RSocket.
Support classes for Spring GraphQL.
-
Uses of GraphQlResponse in org.springframework.graphql
Subinterfaces of GraphQlResponse in org.springframework.graphqlModifier and TypeInterfaceDescriptioninterface
Implementation ofGraphQlResponse
that wraps theExecutionResult
returned fromGraphQL
to expose it asGraphQlResponse
, also providing access to theExecutionInput
used for the request. -
Uses of GraphQlResponse in org.springframework.graphql.client
Subinterfaces of GraphQlResponse in org.springframework.graphql.clientModifier and TypeInterfaceDescriptioninterface
GraphQlResponse
for client use, with further options to handle the response.Methods in org.springframework.graphql.client that return GraphQlResponseModifier and TypeMethodDescriptionstatic GraphQlResponse
GraphQlTransport.createResponse
(Map<String, Object> responseMap) Factory method to createGraphQlResponse
from a GraphQL response map for use in transport implementations.SyncGraphQlTransport.execute
(GraphQlRequest request) Execute a request with a single response such as a "query" or "mutation".Methods in org.springframework.graphql.client that return types with arguments of type GraphQlResponseModifier and TypeMethodDescriptionreactor.core.publisher.Mono<GraphQlResponse>
GraphQlTransport.execute
(GraphQlRequest request) Execute a request with a single response such as a "query" or "mutation".reactor.core.publisher.Flux<GraphQlResponse>
GraphQlTransport.executeSubscription
(GraphQlRequest request) Execute a "subscription" request with a stream of responses. -
Uses of GraphQlResponse in org.springframework.graphql.server
Classes in org.springframework.graphql.server that implement GraphQlResponseModifier and TypeClassDescriptionclass
GraphQlResponse
implementation for server handling over RSocket.class
GraphQlResponse
implementation for server handling over HTTP or over WebSocket. -
Uses of GraphQlResponse in org.springframework.graphql.support
Classes in org.springframework.graphql.support that implement GraphQlResponseModifier and TypeClassDescriptionclass
Base class forGraphQlResponse
that pre-implements the ability to access aResponseField
.class
GraphQlResponse
for server use that wraps theExecutionResult
returned fromGraphQL
and also exposes the actualExecutionInput
instance passed into it.