MCPcopy Index your code
hub / github.com/tinyplex/tinybase / ContextQueriesChild

Function ContextQueriesChild

test/unit/core/ui-react/components.test.tsx:597–608  ·  view source on GitHub ↗
({queriesId}: {readonly queriesId?: string})

Source from the content-addressed store, hash-verified

595);
596
597const 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
610const ContextCheckpoints = ({
611 checkpoints,

Callers

nothing calls this directly

Calls 5

useResultTableFunction · 0.90
useResultRowIdsFunction · 0.90
useResultRowFunction · 0.90
useResultCellIdsFunction · 0.90
useResultCellFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…