@@ -364,7 +364,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
364
364
let {result} be the corresponding completed result.
365
365
- If {data} on {result} is {null}:
366
366
- Initialize {completed} to an empty list.
367
- - Let {parents} be the parent nodes of {deferredGroupedFieldSetRecord }.
367
+ - Let {parents} be the parent nodes of {executionGroup }.
368
368
- Initialize {completed} to an empty list.
369
369
- For each {pendingResult} of {parents}:
370
370
- Append {GetCompletedEntry(parent, errors)} to {completed}.
@@ -686,7 +686,7 @@ variableValues, serial, path, deferUsageSet, deferMap):
686
686
variableValues, path, deferUsageSet, newDeferMap)} _ serially_ if {serial} is
687
687
{true}, _ normally_ (allowing parallelization) otherwise.
688
688
- Let {incrementalDataRecords} be the result of
689
- {ExecuteDeferredGroupedFieldSets (objectType, objectValue, variableValues,
689
+ {ExecuteExecutionGroups (objectType, objectValue, variableValues,
690
690
newGroupedFieldSets, path, newDeferMap)}.
691
691
- Append all items in {nestedIncrementalDataRecords} to
692
692
{incrementalDataRecords}.
@@ -705,7 +705,7 @@ GetNewDeferMap(newDeferUsages, path, deferMap):
705
705
- Set the entry for {deferUsage} in {newDeferMap} to {newDeferredFragment}.
706
706
- Return {newDeferMap}.
707
707
708
- ExecuteDeferredGroupedFieldSets (objectType, objectValue, variableValues,
708
+ ExecuteExecutionGroups (objectType, objectValue, variableValues,
709
709
newGroupedFieldSets, path, deferMap):
710
710
711
711
- Initialize {incrementalDataRecords} to an empty list.
@@ -715,7 +715,7 @@ newGroupedFieldSets, path, deferMap):
715
715
- Let {deferredFragment} be the entry for {deferUsage} in {deferMap}.
716
716
- Append {deferredFragment} to {deferredFragments}.
717
717
- Let {incrementalDataRecord} represent the future execution of
718
- {ExecuteDeferredGroupedFieldSet (groupedFieldSet, objectType, objectValue,
718
+ {ExecuteExecutionGroup (groupedFieldSet, objectType, objectValue,
719
719
variableValues, deferredFragments, path, deferUsageSet, deferMap)},
720
720
incrementally completing {deferredFragments} at {path}.
721
721
- Append {incrementalDataRecord} to {incrementalDataRecords}.
@@ -726,8 +726,8 @@ newGroupedFieldSets, path, deferMap):
726
726
Note: {incrementalDataRecord} can be safely initiated without blocking
727
727
higher-priority data once any of {deferredFragments} are released as pending.
728
728
729
- ExecuteDeferredGroupedFieldSet (groupedFieldSet, objectType, objectValue,
730
- variableValues, path, deferUsageSet, deferMap):
729
+ ExecuteExecutionGroup (groupedFieldSet, objectType, objectValue, variableValues ,
730
+ path, deferUsageSet, deferMap):
731
731
732
732
- Let {data} and {incrementalDataRecords} be the result of running
733
733
{ExecuteGroupedFieldSet(groupedFieldSet, objectType, objectValue,
0 commit comments