-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misleading docs for Java Primitives #105
Comments
Hello! Thanks for taking the time to post this issue, it's highlighted that all the documentation (including the main graphql-java library) need a review and refresh, definitely don't want anyone wasting time because docs are out of date. As part of that work I'll look into your feedback. |
Weird that such little thing still isn't fixed. I also wasted some time before I downloaded sources for autoconfiguration and it uses "BigDecimal" name instead of "GraphQLBigDecimal". |
Would be good if this is corrected in the documentation soon. Same applied for Long instead of GraphQLLong. |
Describe the bug
I lost some time today debugging an issue where it seemed that the
GraphQLBigDecimal
scalar was not working. In fact, it turned out that the name of the scalar needed to beBigDecimal
, notGraphQLBigDecimal
.The docs over here directly suggest that we should be naming these
scalar GraphQLBigDecimal
, which caused runtime errors for me.To Reproduce
I reproduced this on the 19.1 release, but based on the current code, I'm assuming the bug is still present.
The text was updated successfully, but these errors were encountered: