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

Upgrade from 5.4 to 16.1 #532

Answered by setchy
vyj7 asked this question in Q&A
Feb 12, 2021 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

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 scalar

eg

@Bean
GraphQLScalarType longScalar() {
  return Scalars.GraphQLLong;
}

Note: the non-standard Scalars over time will likely be migrated to graphql-java-extended-scalars

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@vyj7
Comment options

Answer selected by oliemansm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants