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
@@ -32,7 +32,7 @@ Learn how to use MicroProfile GraphQL to query and update data from multiple ser
32
32
33
33
== What you'll learn
34
34
35
-
You will learn how to build and use a simple GraphQL service with https://openliberty.io/docs/latest/reference/feature/mpGraphQL-1.0.html[MicroProfile GraphQL^].
35
+
You will learn how to build and use a simple GraphQL service with https://openliberty.io/docs/latest/reference/feature/mpGraphQL-2.0.html[MicroProfile GraphQL^].
36
36
37
37
GraphQL is an open source data query language. Unlike REST APIs, each HTTP request that is sent to a GraphQL service goes to a single HTTP endpoint. Create, read, update, and delete operations and their details are differentiated by the contents of the request. If the operation returns data, the user specifies what properties of the data that they want returned. For read operations, a JSON object is returned that contains only the data and properties that are specified. For other operations, a JSON object might be returned containing information such as a success message.
38
38
@@ -153,7 +153,7 @@ To save time, the [hotspot=class file=3]`SystemLoad` class and [hotspot=class fi
153
153
154
154
== Implementing system service
155
155
156
-
The `system` microservices are backend services that use JAX-RS. For more details on using JAX-RS, see the https://www.openliberty.io/guides/rest-intro.html[Creating a RESTful web service guide^]. These `system` microservices report system properties. GraphQL can access multiple instances of these `system` microservices and collate their information. In a real scenario, GraphQL might access multiple databases or other services.
156
+
The `system` microservices are backend services that use Jakarta Restful Web Services. For more details on using Jakarta Restful Web Services, see the https://www.openliberty.io/guides/rest-intro.html[Creating a RESTful web service guide^]. These `system` microservices report system properties. GraphQL can access multiple instances of these `system` microservices and collate their information. In a real scenario, GraphQL might access multiple databases or other services.
The [hotspot=graphql file=1]`mpGraphQL-1.0` feature that is added to the [hotspot file=1]`server.xml` enables the use of the https://openliberty.io/docs/latest/reference/feature/mpGraphQL-1.0.html[MicroProfile GraphQL^] feature in Open Liberty. Open Liberty's MicroProfile GraphQL feature includes GraphiQL. Enable it by setting the [hotspot=enableGraphiql file=1]`io.openliberty.enableGraphQLUI` variable to `true`.
261
+
The [hotspot=graphql file=1]`mpGraphQL` feature that is added to the [hotspot file=1]`server.xml` enables the use of the https://openliberty.io/docs/latest/reference/feature/mpGraphQL-2.0.html[MicroProfile GraphQL^] feature in Open Liberty. Open Liberty's MicroProfile GraphQL feature includes GraphiQL. Enable it by setting the [hotspot=enableGraphiql file=1]`io.openliberty.enableGraphQLUI` variable to `true`.
0 commit comments