Skip to content

Commit a2c2520

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

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)