Skip to content

Commit 5f58075

Browse files
yaacovCRIvanGoncharov
authored andcommitted
rename fields parameter in executeFieldsSerially to groupedFieldSet
to match type
1 parent 88fa83c commit 5f58075

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execution/execute.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,10 +601,10 @@ function executeFieldsSerially(
601601
parentType: GraphQLObjectType,
602602
sourceValue: unknown,
603603
path: Path | undefined,
604-
fields: GroupedFieldSet,
604+
groupedFieldSet: GroupedFieldSet,
605605
): PromiseOrValue<ObjMap<unknown>> {
606606
return promiseReduce(
607-
fields,
607+
groupedFieldSet,
608608
(results, [responseName, fieldGroup]) => {
609609
const fieldPath = addPath(path, responseName, parentType.name);
610610
const result = executeField(

0 commit comments

Comments
 (0)