(queryId, paramId, value)
| 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)); |
nothing calls this directly
no test coverage detected
searching dependent graphs…