mirror of
https://github.com/graphql-python/graphene.git
synced 2025-04-27 13:03:41 +03:00
Fix BigInt export (#1456)
This commit is contained in:
parent
355601bd5c
commit
35c281a3cd
|
@ -13,6 +13,7 @@ from .types import (
|
||||||
UUID,
|
UUID,
|
||||||
Argument,
|
Argument,
|
||||||
Base64,
|
Base64,
|
||||||
|
BigInt,
|
||||||
Boolean,
|
Boolean,
|
||||||
Context,
|
Context,
|
||||||
Date,
|
Date,
|
||||||
|
@ -50,6 +51,7 @@ __all__ = [
|
||||||
"__version__",
|
"__version__",
|
||||||
"Argument",
|
"Argument",
|
||||||
"Base64",
|
"Base64",
|
||||||
|
"BigInt",
|
||||||
"Boolean",
|
"Boolean",
|
||||||
"ClientIDMutation",
|
"ClientIDMutation",
|
||||||
"Connection",
|
"Connection",
|
||||||
|
|
|
@ -15,7 +15,7 @@ from .interface import Interface
|
||||||
from .json import JSONString
|
from .json import JSONString
|
||||||
from .mutation import Mutation
|
from .mutation import Mutation
|
||||||
from .objecttype import ObjectType
|
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 .schema import Schema
|
||||||
from .structures import List, NonNull
|
from .structures import List, NonNull
|
||||||
from .union import Union
|
from .union import Union
|
||||||
|
@ -24,6 +24,7 @@ from .uuid import UUID
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Argument",
|
"Argument",
|
||||||
"Base64",
|
"Base64",
|
||||||
|
"BigInt",
|
||||||
"Boolean",
|
"Boolean",
|
||||||
"Context",
|
"Context",
|
||||||
"Date",
|
"Date",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user