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

Function setParamValue

src/queries/index.ts:856–865  ·  view source on GitHub ↗
(
    queryId: Id,
    paramId: Id,
    value: ParamValue,
  )

Source from the content-addressed store, hash-verified

854 };
855
856 const setParamValue = (
857 queryId: Id,
858 paramId: Id,
859 value: ParamValue,
860 ): Queries => {
861 if (hasQuery(queryId)) {
862 paramStore.setCell(PARAMS_TABLE, queryId, paramId, value);
863 }
864 return queries;
865 };
866
867 const getParamValues = (queryId: Id): ParamValues =>
868 paramStore.getRow(PARAMS_TABLE, queryId) as ParamValues;

Callers 3

StateFunction · 0.50
TestFunction · 0.50
StateFunction · 0.50

Calls 1

setCellMethod · 0.65

Tested by 3

StateFunction · 0.40
TestFunction · 0.40
StateFunction · 0.40

Used in the wild real call sites across dependent graphs

searching dependent graphs…