We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b6bbe commit 36ef673Copy full SHA for 36ef673
graphql-webclient/src/main/java/graphql/kickstart/spring/webclient/boot/GraphQLRequestBody.java
@@ -11,4 +11,12 @@ class GraphQLRequestBody {
11
Object variables;
12
String operationName;
13
14
+ static GraphQLRequestBodyBuilder builder() {
15
+ return new GraphQLRequestBodyBuilder();
16
+ }
17
+
18
+ static class GraphQLRequestBodyBuilder {
19
+ // added this partial builder to let Javadoc play nice with Lombok, see https://stackoverflow.com/a/58809436/12507062
20
21
22
}
0 commit comments