Skip to content

Commit ee398c9

Browse files
committed
rename fields parameter in executeFieldsSerially to groupedFieldSet
to match type
1 parent 4e161e6 commit ee398c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/execution/execute.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,10 @@ function executeFieldsSerially(
406406
parentType: GraphQLObjectType,
407407
sourceValue: unknown,
408408
path: Path | undefined,
409-
fields: GroupedFieldSet,
409+
groupedFieldSet: GroupedFieldSet,
410410
): PromiseOrValue<ObjMap<unknown>> {
411411
return promiseReduce(
412-
fields,
412+
groupedFieldSet,
413413
(results, [responseName, fieldGroup]) => {
414414
const fieldPath = addPath(path, responseName, parentType.name);
415415
const result = executeField(

0 commit comments

Comments
 (0)