graphene
graphene copied to clipboard
Increased MAX_INT and MIN_INT to +(2^53 - 1) and -(2^53 - 1)
trafficstars
Seems the comment uses the MAX_SAFE_INTEGER which should be 2^53 - 1 instead of 2^32 - 1.
https://github.com/graphql/graphql-spec/issues/73
This might be platform dependent so switching to use sys.maxsize might be an alternative.
@syrusakbary