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