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

Updating graphql-spring-boot to use graphql-java:15. #461

Merged
merged 7 commits into from
Oct 2, 2020
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ TARGET_COMPATIBILITY = 1.8

### Dependencies

LIB_GRAPHQL_JAVA_VER = 14.1
LIB_GRAPHQL_JAVA_VER = 15.0
LIB_SPRING_BOOT_VER = 2.3.4.RELEASE
LIB_GRAPHQL_SERVLET_VER = 9.2.0
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.1.0
LIB_GRAPHQL_ANNOTATIONS_VER = 8.1
LIB_GRAPHQL_SERVLET_VER = 10.0.0
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.2.0
LIB_GRAPHQL_ANNOTATIONS_VER = 8.2
LIB_REFLECTIONS_VER = 0.9.11
LIB_APACHE_COMMONS_TEXT=1.8
LIB_JSOUP_VER=1.13.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
scalar Long

type Subscription {
timer: Long!
timer: Float!
subscriptionWithParameter(param: String!): String!
subscriptionWithInitPayload: String!
subscriptionThatTimesOut: Long!
subscriptionThatTimesOut: Float!
subscriptionThatThrowsException: Boolean!
}

Expand Down