You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/servlet/getting-started/index.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Add the `graphql-java-servlet` dependency to your `dependencies` section:
60
60
61
61
Create a servlet class extending `SimpleGraphQLHttpServlet`. This is the basic "Hello world" example. It creates
62
62
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`.
Copy file name to clipboardExpand all lines: content/servlet/servlet-listener/index.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ public class MyServlet extends GraphQLHttpServlet {
27
27
## Instrumentation
28
28
29
29
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/)
31
31
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)
32
32
to quickly create a custom implementation and use it when creating the `GraphQLConfiguration`.
33
33
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/)
0 commit comments