Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit ca87b82

Browse files
committed
chore: update graphql servlet for graphql-java 17.1 support
1 parent d7e7c24 commit ca87b82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ TARGET_COMPATIBILITY=1.8
3131
### Dependencies
3232
LIB_GRAPHQL_JAVA_VER=17.1
3333
LIB_EXTENDED_SCALARS_VER=17.0
34-
LIB_SPRING_BOOT_VER=2.5.3
35-
LIB_GRAPHQL_SERVLET_VER=11.2.0-SNAPSHOT
36-
LIB_GRAPHQL_JAVA_TOOLS_VER=11.0.1
34+
LIB_SPRING_BOOT_VER=2.5.4
35+
LIB_GRAPHQL_SERVLET_VER=12.0.0-SNAPSHOT
36+
LIB_GRAPHQL_JAVA_TOOLS_VER=11.1.0
3737
LIB_GRAPHQL_ANNOTATIONS_VER=8.3
3838
LIB_REFLECTIONS_VER=0.9.11
3939
LIB_APACHE_COMMONS_TEXT_VER=1.9
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

graphql-kickstart-spring-webflux/src/main/java/graphql/kickstart/spring/webflux/GraphQLController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected Object executeRequest(
3636
ServerWebExchange serverWebExchange) {
3737
GraphQLSingleInvocationInput invocationInput =
3838
invocationInputFactory.create(
39-
new GraphQLRequest(query, variables, operationName), serverWebExchange);
39+
new GraphQLRequest(query, variables, null, operationName), serverWebExchange);
4040
Mono<ExecutionResult> executionResult =
4141
Mono.fromCompletionStage(graphQLInvoker.executeAsync(invocationInput));
4242
return executionResult.map(objectMapper::createResultFromExecutionResult);

0 commit comments

Comments
 (0)