@@ -354,7 +354,7 @@ The procedure for yielding incremental results is specified by the
354
354
355
355
YieldIncrementalResults(data, errors, incrementalDataRecords):
356
356
357
- - Let {graph} be the result of {BuildGraph (incrementalDataRecords)}.
357
+ - Let {graph} be the result of {GraphFromRecords (incrementalDataRecords)}.
358
358
- Let {pendingResults} be the result of {GetNonEmptyNewPending(graph)}.
359
359
- Update {graph} to the subgraph rooted at nodes in {pendingResults}.
360
360
- Yield the result of {GetInitialResult(data, errors, pendingResults)}.
@@ -377,7 +377,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
377
377
- Replace {node} in {graph} with a new node corresponding to the Completed
378
378
Incremental Data for {result}.
379
379
- Let {resultIncrementalDataRecords} be {incrementalDataRecords} on {result}.
380
- - Update {graph} to {BuildGraph (resultIncrementalDataRecords, graph)}.
380
+ - Update {graph} to {GraphFromRecords (resultIncrementalDataRecords, graph)}.
381
381
- Let {completedDeferredFragments} be the set of root nodes in {graph} without
382
382
any child Pending Data nodes.
383
383
- Let {completedIncrementalDataNodes} be the set of completed Incremental Data
@@ -403,7 +403,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
403
403
pending)}.
404
404
- Complete this incremental result stream.
405
405
406
- BuildGraph (incrementalDataRecords, graph):
406
+ GraphFromRecords (incrementalDataRecords, graph):
407
407
408
408
- Let {newGraph} be a new directed acyclic graph containing all of the nodes and
409
409
edges in {graph}.
0 commit comments