Function
setParamValue
(
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; |
Used in the wild real call sites across dependent graphs
searching dependent graphs…