(row: unknown)
| 4489 | { requireDeleteForNew: true }, |
| 4490 | ); |
| 4491 | const mintedRowIdOf = (row: unknown): string | null => { |
| 4492 | const value = row == null ? null : (row as Record<string, unknown>)["row_id"]; |
| 4493 | return typeof value === "string" ? value : null; |
| 4494 | }; |
| 4495 | const committed = yield* transaction( |
| 4496 | Effect.gen(function* () { |
| 4497 | const existing = yield* findConnectionRow(ref); |
no outgoing calls
no test coverage detected