Skip to content

Commit e17a089

Browse files
authored
executeFields: update grouped field set variable name (#3896)
missed by me both in #3891 and #3878
1 parent d75872f commit e17a089

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
@@ -639,14 +639,14 @@ function executeFields(
639639
parentType: GraphQLObjectType,
640640
sourceValue: unknown,
641641
path: Path | undefined,
642-
fields: GroupedFieldSet,
642+
groupedFieldSet: GroupedFieldSet,
643643
incrementalDataRecord?: IncrementalDataRecord | undefined,
644644
): PromiseOrValue<ObjMap<unknown>> {
645645
const results = Object.create(null);
646646
let containsPromise = false;
647647

648648
try {
649-
for (const [responseName, fieldGroup] of fields) {
649+
for (const [responseName, fieldGroup] of groupedFieldSet) {
650650
const fieldPath = addPath(path, responseName, parentType.name);
651651
const result = executeField(
652652
exeContext,

0 commit comments

Comments
 (0)