From ae7fb56cffe59d634d10fbfedeaa4df08145af01 Mon Sep 17 00:00:00 2001 From: Erik Wrede Date: Sat, 27 Aug 2022 20:58:20 +0200 Subject: [PATCH] Fix BigInt export --- graphene/__init__.py | 2 ++ graphene/types/__init__.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/graphene/__init__.py b/graphene/__init__.py index bf9831b59..52ed205ad 100644 --- a/graphene/__init__.py +++ b/graphene/__init__.py @@ -13,6 +13,7 @@ UUID, Argument, Base64, + BigInt, Boolean, Context, Date, @@ -50,6 +51,7 @@ "__version__", "Argument", "Base64", + "BigInt", "Boolean", "ClientIDMutation", "Connection", diff --git a/graphene/types/__init__.py b/graphene/types/__init__.py index 2641dd539..70478a058 100644 --- a/graphene/types/__init__.py +++ b/graphene/types/__init__.py @@ -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 @@ -24,6 +24,7 @@ __all__ = [ "Argument", "Base64", + "BigInt", "Boolean", "Context", "Date",