(queryId, paramValues)
| 3731 | return queries; |
| 3732 | }; |
| 3733 | const setParamValues = (queryId, paramValues) => { |
| 3734 | if (hasQuery(queryId)) { |
| 3735 | setOrDelParamValues(queryId, paramValues); |
| 3736 | } |
| 3737 | return queries; |
| 3738 | }; |
| 3739 | const setParamValue = (queryId, paramId, value) => { |
| 3740 | if (hasQuery(queryId)) { |
| 3741 | paramStore.setCell(PARAMS_TABLE, queryId, paramId, value); |
nothing calls this directly
no test coverage detected
searching dependent graphs…