We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d79297 commit e687ab1Copy full SHA for e687ab1
README.md
@@ -44,10 +44,10 @@ class MyClass {
44
this.graphQLWebClient = graphQLWebClient;
45
}
46
47
- void executeSomeQuery() {
+ String helloWorld() {
48
GraphQLRequest request = GraphQLRequest.builder().query("query { hello }").build();
49
GraphQLResponse response = graphQLWebClient.post(request).block();
50
- String value = response.get("hello", String.class);
+ return response.get("hello", String.class);
51
52
53
```
0 commit comments