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

Commit 0547954

Browse files
committed
Changing test schema scalar from Long to Float due to the Long scalar being removed from graphql-java-15 and out to graphql-java-extended-scalars (ref https://github.com/graphql-java/graphql-java/releases/tag/v15.0)
1 parent e1e181c commit 0547954

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

graphql-spring-boot-test/src/test/resources/test-schema.graphqls

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
scalar Long
2-
31
type Subscription {
4-
timer: Long!
2+
timer: Float!
53
subscriptionWithParameter(param: String!): String!
64
subscriptionWithInitPayload: String!
7-
subscriptionThatTimesOut: Long!
5+
subscriptionThatTimesOut: Float!
86
subscriptionThatThrowsException: Boolean!
97
}
108

0 commit comments

Comments
 (0)