(queryId, paramId)
| 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)); |
| 3748 | const forEachResultTable = (tableCallback) => forEachQuery( |
| 3749 | (queryId) => getResultStore(queryId).hasTable(queryId) ? tableCallback( |
nothing calls this directly
no test coverage detected
searching dependent graphs…