Skip to content

Commit 07c2474

Browse files
committed
Updating graphql-java documentation links to point to v16
1 parent 0f5b908 commit 07c2474

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

content/servlet/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Add the `graphql-java-servlet` dependency to your `dependencies` section:
6060

6161
Create a servlet class extending `SimpleGraphQLHttpServlet`. This is the basic "Hello world" example. It creates
6262
the GraphQL Query `{ hello }` that can be executed and which will respond with "world". It creates the GraphQL
63-
schema programmatically as shown in the [getting started example](https://www.graphql-java.com/documentation/v11/getting-started/) from `graphql-java`.
63+
schema programmatically as shown in the [getting started example](https://www.graphql-java.com/documentation/v16/getting-started/) from `graphql-java`.
6464

6565
```java
6666
@WebServlet(name = "HelloServlet", urlPatterns = {"graphql/*"}, loadOnStartup = 1)

content/servlet/servlet-listener/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ public class MyServlet extends GraphQLHttpServlet {
2727
## Instrumentation
2828

2929
The Servlet Listener listens to the servlet request, but not to the GraphQL query execution.
30-
If you want to listen to that you should use the [Instrumentation](https://www.graphql-java.com/documentation/v11/instrumentation/)
30+
If you want to listen to that you should use the [Instrumentation](https://www.graphql-java.com/documentation/v16/instrumentation/)
3131
provided by GraphQL Java. You can extend [SimpleInstrumentation](https://github.com/graphql-java/graphql-java/blob/master/src/main/java/graphql/execution/instrumentation/SimpleInstrumentation.java)
3232
to quickly create a custom implementation and use it when creating the `GraphQLConfiguration`.
3333

34-
See the [GraphQL Java documentation](https://www.graphql-java.com/documentation/v11/instrumentation/)
34+
See the [GraphQL Java documentation](https://www.graphql-java.com/documentation/v16/instrumentation/)
3535
for details on creating custom instrumentations.
3636

3737
```java

content/spring-boot/directives/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ menu:
1010
url: /spring-boot/directives/
1111
---
1212

13-
See [Schema Directives](https://www.graphql-java.com/documentation/v11/sdl-directives/)
13+
See [Schema Directives](https://www.graphql-java.com/documentation/v16/sdl-directives/)
1414
for a detailed explanation about directives including examples on how to define
1515
them in the SDL and to create the required classes.
1616

content/tools/directives/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ menu:
99
url: /tools/directives/
1010
---
1111

12-
See [Schema Directives](https://www.graphql-java.com/documentation/v11/sdl-directives/)
12+
See [Schema Directives](https://www.graphql-java.com/documentation/v16/sdl-directives/)
1313
for a detailed explanation about directives including examples on how to define
1414
them in the SDL and to create the required classes.
1515

0 commit comments

Comments
 (0)