mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 09:36:44 +03:00
Fix BigInt export (#1456)
This commit is contained in:
parent
355601bd5c
commit
35c281a3cd
|
@ -13,6 +13,7 @@ from .types import (
|
|||
UUID,
|
||||
Argument,
|
||||
Base64,
|
||||
BigInt,
|
||||
Boolean,
|
||||
Context,
|
||||
Date,
|
||||
|
@ -50,6 +51,7 @@ __all__ = [
|
|||
"__version__",
|
||||
"Argument",
|
||||
"Base64",
|
||||
"BigInt",
|
||||
"Boolean",
|
||||
"ClientIDMutation",
|
||||
"Connection",
|
||||
|
|
|
@ -15,7 +15,7 @@ from .interface import Interface
|
|||
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
|
||||
|
@ -24,6 +24,7 @@ from .uuid import UUID
|
|||
__all__ = [
|
||||
"Argument",
|
||||
"Base64",
|
||||
"BigInt",
|
||||
"Boolean",
|
||||
"Context",
|
||||
"Date",
|
||||
|
|
Loading…
Reference in New Issue
Block a user