({queriesId}: {readonly queriesId?: string})
| 595 | ); |
| 596 | |
| 597 | const ContextQueriesChild = ({queriesId}: {readonly queriesId?: string}) => ( |
| 598 | <> |
| 599 | <ResultTableView queries={queriesId} queryId="q1" /> |
| 600 | {JSON.stringify(useResultTable('q1', queriesId))} |
| 601 | {JSON.stringify(useResultRowIds('q1', queriesId))} |
| 602 | <ResultRowView queries={queriesId} queryId="q1" rowId="r1" /> |
| 603 | {JSON.stringify(useResultRow('q1', 'r1', queriesId))} |
| 604 | {JSON.stringify(useResultCellIds('q1', 'r1', queriesId))} |
| 605 | <ResultCellView queries={queriesId} queryId="q1" rowId="r1" cellId="c1" /> |
| 606 | {JSON.stringify(useResultCell('q1', 'r1', 'c1', queriesId))} |
| 607 | </> |
| 608 | ); |
| 609 | |
| 610 | const ContextCheckpoints = ({ |
| 611 | checkpoints, |
nothing calls this directly
no test coverage detected
searching dependent graphs…