Skip to content

Commit 967a9d2

Browse files
committed
Fixed old DjangoConnectionField usage
1 parent 0fa7f5c commit 967a9d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/contrib/django/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def internal_type(self, schema):
2727
if not field_object_type:
2828
raise SkipField()
2929
if is_node(field_object_type):
30-
field = DjangoConnectionField(field_object_type)
30+
field = ConnectionField(field_object_type)
3131
else:
3232
field = Field(List(field_object_type))
3333
field.contribute_to_class(self.object_type, self.attname)

0 commit comments

Comments
 (0)