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 d6fd3fc commit 140ad42Copy full SHA for 140ad42
graphene_django/tests/test_query.py
@@ -1083,7 +1083,7 @@ class Meta:
1083
class Query(graphene.ObjectType):
1084
films = DjangoConnectionField(FilmType)
1085
1086
- def resolve_films(root, info):
+ def resolve_films(root, info, **args):
1087
qs = Film.objects.prefetch_related("reporters")
1088
return qs
1089
@@ -1115,4 +1115,4 @@ def resolve_films(root, info):
1115
schema = graphene.Schema(query=Query)
1116
with django_assert_num_queries(3) as captured:
1117
result = schema.execute(query)
1118
- assert not result.errors
+ assert not result.errors
0 commit comments