File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -882,7 +882,7 @@ def execute_fields(
882
882
parent_type : GraphQLObjectType ,
883
883
source_value : Any ,
884
884
path : Path | None ,
885
- fields : GroupedFieldSet ,
885
+ grouped_field_set : GroupedFieldSet ,
886
886
incremental_data_record : IncrementalDataRecord | None = None ,
887
887
) -> AwaitableOrValue [dict [str , Any ]]:
888
888
"""Execute the given fields concurrently.
@@ -894,7 +894,7 @@ def execute_fields(
894
894
is_awaitable = self .is_awaitable
895
895
awaitable_fields : list [str ] = []
896
896
append_awaitable = awaitable_fields .append
897
- for response_name , field_group in fields .items ():
897
+ for response_name , field_group in grouped_field_set .items ():
898
898
field_path = Path (path , response_name , parent_type .name )
899
899
result = self .execute_field (
900
900
parent_type ,
You can’t perform that action at this time.
0 commit comments