Skip to content

Commit 459e390

Browse files
committed
Fixed connection field if django-filter is not installed
1 parent 4127031 commit 459e390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_django/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ def get_connection_field(*args, **kwargs):
5656
if DJANGO_FILTER_INSTALLED:
5757
from .filter.fields import DjangoFilterConnectionField
5858
return DjangoFilterConnectionField(*args, **kwargs)
59-
return ConnectionField(*args, **kwargs)
59+
return DjangoConnectionField(*args, **kwargs)

0 commit comments

Comments
 (0)