We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4482a commit 1f44a7cCopy full SHA for 1f44a7c
src/execution/execute.ts
@@ -296,9 +296,9 @@ function executeOperation(
296
undefined,
297
);
298
} else {
299
- const fieldPLan = buildExecutionPlan(groupedFieldSet);
300
- groupedFieldSet = fieldPLan.groupedFieldSet;
301
- const newGroupedFieldSets = fieldPLan.newGroupedFieldSets;
+ const executionPlan = buildExecutionPlan(groupedFieldSet);
+ groupedFieldSet = executionPlan.groupedFieldSet;
+ const newGroupedFieldSets = executionPlan.newGroupedFieldSets;
302
const newDeferMap = addNewDeferredFragments(newDeferUsages, new Map());
303
304
graphqlWrappedResult = executeRootGroupedFieldSet(
0 commit comments