Skip to content

Commit 1f44a7c

Browse files
committed
rename fieldPLan to executionPlan
got to watch that match case setting with mis-capitalizations
1 parent db4482a commit 1f44a7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/execution/execute.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,9 @@ function executeOperation(
296296
undefined,
297297
);
298298
} else {
299-
const fieldPLan = buildExecutionPlan(groupedFieldSet);
300-
groupedFieldSet = fieldPLan.groupedFieldSet;
301-
const newGroupedFieldSets = fieldPLan.newGroupedFieldSets;
299+
const executionPlan = buildExecutionPlan(groupedFieldSet);
300+
groupedFieldSet = executionPlan.groupedFieldSet;
301+
const newGroupedFieldSets = executionPlan.newGroupedFieldSets;
302302
const newDeferMap = addNewDeferredFragments(newDeferUsages, new Map());
303303

304304
graphqlWrappedResult = executeRootGroupedFieldSet(

0 commit comments

Comments
 (0)