MCPcopy Index your code
hub / github.com/simstudioai/sim / loadExecutionsForRow

Function loadExecutionsForRow

apps/sim/lib/table/rows/executions.ts:74–77  ·  view source on GitHub ↗
(trx: DbOrTx, rowId: string)

Source from the content-addressed store, hash-verified

72
73/** Convenience: load executions for one row, returning `{}` when missing. */
74export 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)`,

Callers 2

upsertRowFunction · 0.90
getRowByIdFunction · 0.90

Calls 2

loadExecutionsByRowFunction · 0.85
getMethod · 0.65

Tested by

no test coverage detected