shurcooL / graphql

Package graphql provides a GraphQL client implementation.
MIT License
704 stars 280 forks source link

Added Int64Bit type #82

Closed zulandar closed 2 years ago

zulandar commented 2 years ago

I have a server that the int type is actually Int64Bit. Added this and tested locally along with adding the test

dmitshur commented 2 years ago

Thanks, but the scope of scalars included in this package is limited to the ones that are considered built-in in the GraphQL spec:

GraphQL specifies a basic set of well-defined Scalar types: Int, Float, String, Boolean, and ID.

For custom scalars beyond that, you can define them in your codebase that needs them.