Skip to content

Commit 35c281a

Browse files
authored
Fix BigInt export (#1456)
1 parent 355601b commit 35c281a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

graphene/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
UUID,
1414
Argument,
1515
Base64,
16+
BigInt,
1617
Boolean,
1718
Context,
1819
Date,
@@ -50,6 +51,7 @@
5051
"__version__",
5152
"Argument",
5253
"Base64",
54+
"BigInt",
5355
"Boolean",
5456
"ClientIDMutation",
5557
"Connection",

graphene/types/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from .json import JSONString
1616
from .mutation import Mutation
1717
from .objecttype import ObjectType
18-
from .scalars import ID, Boolean, Float, Int, Scalar, String
18+
from .scalars import ID, BigInt, Boolean, Float, Int, Scalar, String
1919
from .schema import Schema
2020
from .structures import List, NonNull
2121
from .union import Union
@@ -24,6 +24,7 @@
2424
__all__ = [
2525
"Argument",
2626
"Base64",
27+
"BigInt",
2728
"Boolean",
2829
"Context",
2930
"Date",

0 commit comments

Comments
 (0)