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 1b6cc58 commit 39a873bCopy full SHA for 39a873b
src/graphql/execution/execute.py
@@ -842,7 +842,7 @@ def execute_fields_serially(
842
parent_type: GraphQLObjectType,
843
source_value: Any,
844
path: Path | None,
845
- fields: GroupedFieldSet,
+ grouped_field_set: GroupedFieldSet,
846
) -> AwaitableOrValue[dict[str, Any]]:
847
"""Execute the given fields serially.
848
@@ -875,7 +875,7 @@ async def set_result(
875
return results
876
877
# noinspection PyTypeChecker
878
- return async_reduce(reducer, fields.items(), {})
+ return async_reduce(reducer, grouped_field_set.items(), {})
879
880
def execute_fields(
881
self,
0 commit comments