(id: string, executionId: string)
| 291 | }) |
| 292 | |
| 293 | const readPoint = <T extends { id: string }>(id: string, executionId: string) => |
| 294 | Effect.promise(() => container.item(id, executionId).read<T>()).pipe( |
| 295 | Effect.map((r) => Option.fromNullishOr(r.resource)) |
| 296 | ) |
| 297 | |
| 298 | // --- Workflow result helpers ------------------------------------------ |
| 299 |
no test coverage detected
searching dependent graphs…