-
I have been trying to upgrade from graphql-spring-boot from version 5.4 to 16.1 (Don't ask why so delay :-().
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In GraphQL Java 15 they removed non-standard scalar handling (breaking change) See the last item in the release notes You will need to ensure you have eg
Note: the non-standard Scalars over time will likely be migrated to graphql-java-extended-scalars |
Beta Was this translation helpful? Give feedback.
In GraphQL Java 15 they removed non-standard scalar handling (breaking change)
See the last item in the release notes
You will need to ensure you have
scalar Long
in your SDL file along with a Bean to wire-in the non-standard scalareg
Note: the non-standard Scalars over time will likely be migrated to graphql-java-extended-scalars