(trx: DbOrTx, rowId: string)
| 72 | |
| 73 | /** Convenience: load executions for one row, returning `{}` when missing. */ |
| 74 | export async function loadExecutionsForRow(trx: DbOrTx, rowId: string): Promise<RowExecutions> { |
| 75 | const byRow = await loadExecutionsByRow(trx, [rowId]) |
| 76 | return byRow.get(rowId) ?? {} |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Loads the enrichment cascade breakdown for one `(tableId, rowId, groupId)`, |
no test coverage detected