MCPcopy Create free account
hub / github.com/tinyplex/tinybase / setParamValue

Function setParamValue

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:3739–3744  ·  view source on GitHub ↗
(queryId, paramId, value)

Source from the content-addressed store, hash-verified

3737 return queries;
3738 };
3739 const setParamValue = (queryId, paramId, value) => {
3740 if (hasQuery(queryId)) {
3741 paramStore.setCell(PARAMS_TABLE, queryId, paramId, value);
3742 }
3743 return queries;
3744 };
3745 const getParamValues = (queryId) => paramStore.getRow(PARAMS_TABLE, queryId);
3746 const getParamValue = (queryId, paramId) => paramStore.getCell(PARAMS_TABLE, queryId, paramId);
3747 const addQueryIdsListener = (listener) => addQueryIdsListenerImpl(() => listener(queries));

Callers

nothing calls this directly

Calls 1

setCellMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…