Fix BigInt export (#1456)

This commit is contained in:
Erik Wrede 2022-08-28 17:30:26 +02:00 committed by GitHub
parent 355601bd5c
commit 35c281a3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -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",

View File

@ -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",