We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ec068 commit 13f9262Copy full SHA for 13f9262
graphene_django/filter/fields.py
@@ -30,7 +30,7 @@ def convert_enum(data):
30
class DjangoFilterConnectionField(DjangoConnectionField):
31
def __init__(
32
self,
33
- type,
+ type_,
34
fields=None,
35
order_by=None,
36
extra_filter_meta=None,
@@ -44,7 +44,7 @@ def __init__(
44
self._filtering_args = None
45
self._extra_filter_meta = extra_filter_meta
46
self._base_args = None
47
- super(DjangoFilterConnectionField, self).__init__(type, *args, **kwargs)
+ super(DjangoFilterConnectionField, self).__init__(type_, *args, **kwargs)
48
49
@property
50
def args(self):
0 commit comments