diff --git a/graphene_django_extras/types.py b/graphene_django_extras/types.py index 878abd4..752f979 100644 --- a/graphene_django_extras/types.py +++ b/graphene_django_extras/types.py @@ -132,6 +132,10 @@ def is_type_of(cls, root, info): raise Exception(('Received incompatible instance "{}".').format(root)) return isinstance(root, cls._meta.model) + @classmethod + def get_queryset(cls, queryset, info): + return queryset + @classmethod def get_node(cls, info, id): try: