Skip to content

Commit

Permalink
Fix BigInt export (#1456)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikwrede committed Aug 28, 2022
1 parent 355601b commit 35c281a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions graphene/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
UUID,
Argument,
Base64,
BigInt,
Boolean,
Context,
Date,
Expand Down Expand Up @@ -50,6 +51,7 @@
"__version__",
"Argument",
"Base64",
"BigInt",
"Boolean",
"ClientIDMutation",
"Connection",
Expand Down
3 changes: 2 additions & 1 deletion graphene/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .json import JSONString
from .mutation import Mutation
from .objecttype import ObjectType
from .scalars import ID, Boolean, Float, Int, Scalar, String
from .scalars import ID, BigInt, Boolean, Float, Int, Scalar, String
from .schema import Schema
from .structures import List, NonNull
from .union import Union
Expand All @@ -24,6 +24,7 @@
__all__ = [
"Argument",
"Base64",
"BigInt",
"Boolean",
"Context",
"Date",
Expand Down

0 comments on commit 35c281a

Please sign in to comment.