Skip to content

Commit 2342bcb

Browse files
committed
rename fields parameter in executeFieldsSerially to groupedFieldSet
to match type
1 parent 265295f commit 2342bcb

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
@@ -445,10 +445,10 @@ function executeFieldsSerially(
445445
parentType: GraphQLObjectType,
446446
sourceValue: unknown,
447447
path: Path | undefined,
448-
fields: GroupedFieldSet,
448+
groupedFieldSet: GroupedFieldSet,
449449
): PromiseOrValue<ObjMap<unknown>> {
450450
return promiseReduce(
451-
fields,
451+
groupedFieldSet,
452452
(results, [responseName, fieldGroup]) => {
453453
const fieldPath = addPath(path, responseName, parentType.name);
454454
const result = executeField(

0 commit comments

Comments
 (0)