We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0402948 commit 27e0cd0Copy full SHA for 27e0cd0
src/graphql/execution/execute.py
@@ -882,7 +882,7 @@ def execute_fields(
882
parent_type: GraphQLObjectType,
883
source_value: Any,
884
path: Path | None,
885
- fields: GroupedFieldSet,
+ grouped_field_set: GroupedFieldSet,
886
incremental_data_record: IncrementalDataRecord | None = None,
887
) -> AwaitableOrValue[dict[str, Any]]:
888
"""Execute the given fields concurrently.
@@ -894,7 +894,7 @@ def execute_fields(
894
is_awaitable = self.is_awaitable
895
awaitable_fields: list[str] = []
896
append_awaitable = awaitable_fields.append
897
- for response_name, field_group in fields.items():
+ for response_name, field_group in grouped_field_set.items():
898
field_path = Path(path, response_name, parent_type.name)
899
result = self.execute_field(
900
parent_type,
0 commit comments