(queryId: Id)
| 865 | }; |
| 866 | |
| 867 | const getParamValues = (queryId: Id): ParamValues => |
| 868 | paramStore.getRow(PARAMS_TABLE, queryId) as ParamValues; |
| 869 | |
| 870 | const getParamValue = (queryId: Id, paramId: Id): ParamValue | undefined => |
| 871 | paramStore.getCell(PARAMS_TABLE, queryId, paramId) as |
no test coverage detected
searching dependent graphs…