(queryId: Id)
| 256 | ); |
| 257 | |
| 258 | const resetSourceStores = (queryId: Id): void => |
| 259 | ifNotUndefined(mapGet(sourceStoreListenerIds, queryId), (queryStoreIds) => { |
| 260 | mapForEach(queryStoreIds, (sourceStore, listenerIds) => |
| 261 | collForEach(listenerIds, (listenerId) => |
| 262 | sourceStore.delListener(listenerId), |
| 263 | ), |
| 264 | ); |
| 265 | collClear(queryStoreIds); |
| 266 | }); |
| 267 | |
| 268 | const synchronizeTransactions = ( |
| 269 | queryId: Id, |
no test coverage detected
searching dependent graphs…