Skip to content

Commit 274870e

Browse files
committed
rename executeExecutionGroups to collectExecutionGroups
1 parent 19597e3 commit 274870e

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
@@ -311,7 +311,7 @@ function executeOperation(
311311
);
312312

313313
if (newGroupedFieldSets.size > 0) {
314-
const newPendingExecutionGroups = executeExecutionGroups(
314+
const newPendingExecutionGroups = collectExecutionGroups(
315315
exeContext,
316316
rootType,
317317
rootValue,
@@ -1761,7 +1761,7 @@ function collectAndExecuteSubfields(
17611761
);
17621762

17631763
if (newGroupedFieldSets.size > 0) {
1764-
const newPendingExecutionGroups = executeExecutionGroups(
1764+
const newPendingExecutionGroups = collectExecutionGroups(
17651765
exeContext,
17661766
returnType,
17671767
result,
@@ -2084,7 +2084,7 @@ function assertEventStream(result: unknown): AsyncIterable<unknown> {
20842084
return result;
20852085
}
20862086

2087-
function executeExecutionGroups(
2087+
function collectExecutionGroups(
20882088
exeContext: ExecutionContext,
20892089
parentType: GraphQLObjectType,
20902090
sourceValue: unknown,

0 commit comments

Comments
 (0)