Uses of Interface
org.springframework.graphql.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
Modifier 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
Modifier and TypeInterfaceDescriptioninterface
GraphQlResponse
for client use, with further options to handle the response.Modifier 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".Modifier 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
Modifier 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
Modifier 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.