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

Function getUnmetGroupDeps

apps/sim/lib/table/deps.ts:101–108  ·  view source on GitHub ↗
(group: WorkflowGroup, row: TableRow)

Source from the content-addressed store, hash-verified

99 * UI can render "Waiting on column_a, column_b".
100 */
101export function getUnmetGroupDeps(group: WorkflowGroup, row: TableRow): UnmetDeps {
102 const cols = group.dependencies?.columns ?? []
103 const columns: string[] = []
104 for (const colName of cols) {
105 if (isDepValueUnmet(row.data[colName])) columns.push(colName)
106 }
107 return { columns }
108}
109
110/**
111 * Optimistic mirror of the server's row-update→scheduler cascade: for every

Callers 2

deps.test.tsFile · 0.90
data-row.tsxFile · 0.90

Calls 2

isDepValueUnmetFunction · 0.85
pushMethod · 0.45

Tested by

no test coverage detected