Function
deleteClock
(executionId: string, name: string)
Source from the content-addressed store, hash-verified
| 437 | .pipe(Effect.map((rows) => (rows as ReadonlyArray<unknown>).length > 0)) |
| 438 | |
| 439 | const deleteClock = (executionId: string, name: string) => |
| 440 | exec( |
| 441 | `DELETE FROM "${clockTable}" WHERE execution_id = ? AND name = ?`, |
| 442 | [executionId, name] |
| 443 | ) |
| 444 | |
| 445 | // --- Workflow result helpers ------------------------------------------ |
| 446 | |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…