(
queryId: Id,
fromStore: Store,
toStore: Store,
)
| 266 | }); |
| 267 | |
| 268 | const synchronizeTransactions = ( |
| 269 | queryId: Id, |
| 270 | fromStore: Store, |
| 271 | toStore: Store, |
| 272 | ) => |
| 273 | addPreStoreListener( |
| 274 | fromStore, |
| 275 | queryId, |
| 276 | fromStore.addStartTransactionListener(toStore.startTransaction), |
| 277 | fromStore.addDidFinishTransactionListener(() => |
| 278 | toStore.finishTransaction(), |
| 279 | ), |
| 280 | ); |
| 281 | |
| 282 | const setOrDelParamValues = (queryId: Id, paramValues: ParamValues) => |
| 283 | (objIsEmpty(paramValues) ? paramStore.delRow : paramStore.setRow)( |
no test coverage detected
searching dependent graphs…