Skip to content

Commit

Permalink
[graphql] Replace Int with BigInt for overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Dec 31, 2024
1 parent b9dd154 commit fc75d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


class GrapheneAssetCheckEvaluationTargetMaterializationData(graphene.ObjectType):
storageId = graphene.NonNull(graphene.Int)
storageId = graphene.NonNull(graphene.BigInt)
runId = graphene.NonNull(graphene.String)
timestamp = graphene.NonNull(graphene.Float)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import graphene


class GrapheneCursor(graphene.Int, graphene.Scalar):
class GrapheneCursor(graphene.BigInt, graphene.Scalar):
class Meta:
name = "Cursor"

0 comments on commit fc75d93

Please sign in to comment.