pub fn impact_analysis(
graph: &MaterializedGraph,
node_id: &str,
max_depth: Option<usize>,
) -> Vec<String>Expand description
Impact analysis: reverse BFS from a node — “what depends on this?”
Traverses incoming edges to find all nodes that transitively depend on node_id.