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

Function forEachResultTable

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:3748–3753  ·  view source on GitHub ↗
(tableCallback)

Source from the content-addressed store, hash-verified

3746 const getParamValue = (queryId, paramId) => paramStore.getCell(PARAMS_TABLE, queryId, paramId);
3747 const addQueryIdsListener = (listener) => addQueryIdsListenerImpl(() => listener(queries));
3748 const forEachResultTable = (tableCallback) => forEachQuery(
3749 (queryId) => getResultStore(queryId).hasTable(queryId) ? tableCallback(
3750 queryId,
3751 (rowCallback) => queries.forEachResultRow(queryId, rowCallback)
3752 ) : 0
3753 );
3754 const addParamValuesListener = (queryId, listener) => PARAM_LISTENER_PREFIX + paramStore.addRowListener(
3755 PARAMS_TABLE,
3756 queryId,

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…