public interface WebGraphQlHandler
Modifier and Type | Interface and Description |
---|---|
static interface |
WebGraphQlHandler.Builder
|
Modifier and Type | Method and Description |
---|---|
static WebGraphQlHandler.Builder |
builder(GraphQlService graphQlService)
Provides access to a builder to create a
WebGraphQlHandler instance. |
reactor.core.publisher.Mono<WebOutput> |
handle(WebInput input)
Perform request execution for the given input and return the result.
|
reactor.core.publisher.Mono<WebOutput> handle(WebInput input)
input
- the GraphQL request input containerstatic WebGraphQlHandler.Builder builder(GraphQlService graphQlService)
WebGraphQlHandler
instance.graphQlService
- the GraphQlService
to use for actual execution of the
request.