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

Function forEachResultTable

src/queries/index.ts:877–884  ·  view source on GitHub ↗
(tableCallback: ResultTableCallback)

Source from the content-addressed store, hash-verified

875 addQueryIdsListenerImpl(() => listener(queries));
876
877 const forEachResultTable = (tableCallback: ResultTableCallback) =>
878 forEachQuery((queryId) =>
879 getResultStore(queryId).hasTable(queryId)
880 ? tableCallback(queryId, (rowCallback) =>
881 queries.forEachResultRow(queryId, rowCallback),
882 )
883 : 0,
884 );
885
886 const addParamValuesListener = (
887 queryId: IdOrNull,

Callers

nothing calls this directly

Calls 3

getResultStoreFunction · 0.70
hasTableMethod · 0.65
forEachResultRowMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…