From de3f1ce25ce93f02b325a58ca7837588ec5f64d4 Mon Sep 17 00:00:00 2001 From: Muhammed Aldulaimi Date: Sun, 10 Nov 2024 07:09:09 +0300 Subject: [PATCH] Add DjangoUnionType to init --- graphene_django/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphene_django/__init__.py b/graphene_django/__init__.py index ac15e35..a50b124 100644 --- a/graphene_django/__init__.py +++ b/graphene_django/__init__.py @@ -1,5 +1,5 @@ from .fields import DjangoConnectionField, DjangoListField -from .types import DjangoObjectType +from .types import DjangoObjectType, DjangoUnionType from .utils import bypass_get_queryset __version__ = "3.2.2" @@ -7,6 +7,7 @@ __version__ = "3.2.2" __all__ = [ "__version__", "DjangoObjectType", + "DjangoUnionType", "DjangoListField", "DjangoConnectionField", "bypass_get_queryset",