Uses of Interface
org.springframework.graphql.server.WebGraphQlInterceptor
Package
Description
Support for GraphQL
observability
.Server transports handling GraphQL requests over the HTTP, WebSocket, and RSocket.
-
Uses of WebGraphQlInterceptor in org.springframework.graphql.observation
Modifier and TypeClassDescriptionclass
-
Uses of WebGraphQlInterceptor in org.springframework.graphql.server
Modifier and TypeInterfaceDescriptioninterface
An extension ofWebGraphQlInterceptor
with additional methods to handle the start and end of a WebSocket connection.Modifier and TypeMethodDescriptiondefault WebGraphQlInterceptor
WebGraphQlInterceptor.andThen
(WebGraphQlInterceptor nextInterceptor) Return a newWebGraphQlInterceptor
that invokes the current interceptor first and then the one that is passed in.Modifier and TypeMethodDescriptiondefault WebGraphQlInterceptor
WebGraphQlInterceptor.andThen
(WebGraphQlInterceptor nextInterceptor) Return a newWebGraphQlInterceptor
that invokes the current interceptor first and then the one that is passed in.WebGraphQlHandler.Builder.interceptor
(WebGraphQlInterceptor... interceptors) Configure interceptors to be invoked before the targetGraphQlService
.Modifier and TypeMethodDescriptionWebGraphQlHandler.Builder.interceptors
(List<WebGraphQlInterceptor> interceptors) Alternative toWebGraphQlHandler.Builder.interceptor(WebGraphQlInterceptor...)
with a List.