Code Monkey home page Code Monkey logo

Comments (5)

mickhansen avatar mickhansen commented on July 3, 2024

No firm opinion, any clues in the spec?

from graphql-sequelize.

bringking avatar bringking commented on July 3, 2024

Well the spec specifies that a GraphQLFloat is definitely a FP number-

A Float number includes either a decimal point (ex. 1.0) or an exponent (ex. 1e50) or both (ex. 6.0221413e23).

However, the graphql-js implementation just uses parseFloat

parseFloat(ast.value)

which in our case, passing a large integer value to parseFloat, results in standard integer, e.g.

parseFloat("4121722835") // result: 4121722835
// not
// 4121722835.0

So in order to get a BigInt, it seems we have to use either a custom scalar type or use the Float type because of this behavior. I guess the "cleanest" way to do this would be to implement our own Scalar type called BigInt that doesn't adhere to the GraphQLInt limits. Then the question becomes whether this library starts implementing custom types. In this case, I am leaning towards the custom type as being the best solution...

from graphql-sequelize.

mickhansen avatar mickhansen commented on July 3, 2024

A custom scalar is probably the best way to go if there's no standard way of doing int8

from graphql-sequelize.

brainjam avatar brainjam commented on July 3, 2024

The natural mapping would be to GraphQLString wouldn't it? If you need to further play with it on the GraphQL side you can convert to big-integer or float or whatever. My use case is that the BIGINT is a 64-bit integer unique iD, so I'm happy enough with the string representation on the GraphQL side.

from graphql-sequelize.

bringking avatar bringking commented on July 3, 2024

Yeah I agree with @brainjam after talking it over with Lee byron on the other projects. I will do a PR making GraphQLString the default.

from graphql-sequelize.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.