Skip to content

Commit 3194566

Browse files
committed
rename "deferred grouped field set record" to "execution group"
1 parent f3b6a3f commit 3194566

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/Section 6 -- Execution.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
364364
let {result} be the corresponding completed result.
365365
- If {data} on {result} is {null}:
366366
- Initialize {completed} to an empty list.
367-
- Let {parents} be the parent nodes of {deferredGroupedFieldSetRecord}.
367+
- Let {parents} be the parent nodes of {executionGroup}.
368368
- Initialize {completed} to an empty list.
369369
- For each {pendingResult} of {parents}:
370370
- Append {GetCompletedEntry(parent, errors)} to {completed}.
@@ -686,7 +686,7 @@ variableValues, serial, path, deferUsageSet, deferMap):
686686
variableValues, path, deferUsageSet, newDeferMap)} _serially_ if {serial} is
687687
{true}, _normally_ (allowing parallelization) otherwise.
688688
- Let {incrementalDataRecords} be the result of
689-
{ExecuteDeferredGroupedFieldSets(objectType, objectValue, variableValues,
689+
{ExecuteExecutionGroups(objectType, objectValue, variableValues,
690690
newGroupedFieldSets, path, newDeferMap)}.
691691
- Append all items in {nestedIncrementalDataRecords} to
692692
{incrementalDataRecords}.
@@ -705,7 +705,7 @@ GetNewDeferMap(newDeferUsages, path, deferMap):
705705
- Set the entry for {deferUsage} in {newDeferMap} to {newDeferredFragment}.
706706
- Return {newDeferMap}.
707707

708-
ExecuteDeferredGroupedFieldSets(objectType, objectValue, variableValues,
708+
ExecuteExecutionGroups(objectType, objectValue, variableValues,
709709
newGroupedFieldSets, path, deferMap):
710710

711711
- Initialize {incrementalDataRecords} to an empty list.
@@ -715,7 +715,7 @@ newGroupedFieldSets, path, deferMap):
715715
- Let {deferredFragment} be the entry for {deferUsage} in {deferMap}.
716716
- Append {deferredFragment} to {deferredFragments}.
717717
- Let {incrementalDataRecord} represent the future execution of
718-
{ExecuteDeferredGroupedFieldSet(groupedFieldSet, objectType, objectValue,
718+
{ExecuteExecutionGroup(groupedFieldSet, objectType, objectValue,
719719
variableValues, deferredFragments, path, deferUsageSet, deferMap)},
720720
incrementally completing {deferredFragments} at {path}.
721721
- Append {incrementalDataRecord} to {incrementalDataRecords}.
@@ -726,8 +726,8 @@ newGroupedFieldSets, path, deferMap):
726726
Note: {incrementalDataRecord} can be safely initiated without blocking
727727
higher-priority data once any of {deferredFragments} are released as pending.
728728

729-
ExecuteDeferredGroupedFieldSet(groupedFieldSet, objectType, objectValue,
730-
variableValues, path, deferUsageSet, deferMap):
729+
ExecuteExecutionGroup(groupedFieldSet, objectType, objectValue, variableValues,
730+
path, deferUsageSet, deferMap):
731731

732732
- Let {data} and {incrementalDataRecords} be the result of running
733733
{ExecuteGroupedFieldSet(groupedFieldSet, objectType, objectValue,

0 commit comments

Comments
 (0)