How can I handle Big Int with GraphQL?

How can I handle Big Int with GraphQL?


0

I’ve an Django Model field with BigInt type, How can i map this in graphql schema, is there anything available like BigInt like Int type in Graphql?

I’m using graphene library FYI

My Schema:

type MyModelObject {
  complaintId: BigInt
  createdBy: User!
  complaintNumber: String!
}

I got below warning/error in IDE

The field type 'BigInt' is not present when resolving type 'MyModelObject'

Share
Improve this question


Load 5 more related questions


Show fewer related questions

0

Reset to default



Browse other questions tagged

or ask your own question.

Leave a Reply

Your email address will not be published. Required fields are marked *