From 6afd041bb22690707c703864e6cd33a2443002d7 Mon Sep 17 00:00:00 2001 From: Jonas <13821543+sonallux@users.noreply.github.com> Date: Thu, 23 Jun 2022 19:24:15 +0200 Subject: [PATCH] Fix typo See gh-31518 --- .../spring-boot-docs/src/docs/asciidoc/web/spring-graphql.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/spring-graphql.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/spring-graphql.adoc index 080c7a3a738d..452df0f4aeb6 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/spring-graphql.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/spring-graphql.adoc @@ -86,7 +86,7 @@ are detected by Spring Boot and considered as candidates for `DataFetcher` for m The GraphQL HTTP endpoint is at HTTP POST "/graphql" by default. The path can be customized with configprop:spring.graphql.path[]. -TIP: The HTTP endpoint for both Spring MVC and Spring WebFlux is provided by a `RouterFunction` bean with an `@Order` or `0`. +TIP: The HTTP endpoint for both Spring MVC and Spring WebFlux is provided by a `RouterFunction` bean with an `@Order` of `0`. If you define your own `RouterFunction` beans, you may want to add appropriate `@Order` annotations to ensure that they are sorted correctly. The GraphQL WebSocket endpoint is off by default. To enable it: