Package | Description |
---|---|
org.springframework.graphql.web |
Support for executing GraphQL requests over the Web, including handlers for HTTP and
WebSocket.
|
Modifier and Type | Method and Description |
---|---|
default WebInterceptor |
WebInterceptor.andThen(WebInterceptor interceptor)
Return a composed
WebInterceptor that invokes the current interceptor first
one and then the one one passed in. |
Modifier and Type | Method and Description |
---|---|
default WebInterceptor |
WebInterceptor.andThen(WebInterceptor interceptor)
Return a composed
WebInterceptor that invokes the current interceptor first
one and then the one one passed in. |
WebGraphQlHandler.Builder |
WebGraphQlHandler.Builder.interceptor(WebInterceptor... interceptors)
Configure interceptors to be invoked before the target
GraphQlService . |
Modifier and Type | Method and Description |
---|---|
WebGraphQlHandler.Builder |
WebGraphQlHandler.Builder.interceptors(List<WebInterceptor> interceptors)
Alternative to
WebGraphQlHandler.Builder.interceptor(WebInterceptor...) with a List. |