* Calculate the impact radius of a node * * Returns all nodes that could be affected by changes to this node. * * @param nodeId - ID of the node * @param maxDepth - Maximum depth to traverse (default: 3) * @returns Subgraph containing potentially impacted nodes
(nodeId: string, maxDepth: number = 3)
| 1640 | * @returns Subgraph containing potentially impacted nodes |
| 1641 | */ |
| 1642 | getImpactRadius(nodeId: string, maxDepth: number = 3): Subgraph { |
| 1643 | return this.traverser.getImpactRadius(nodeId, maxDepth); |
| 1644 | } |
| 1645 | |
| 1646 | /** |
| 1647 | * Find the shortest path between two nodes |
no outgoing calls
no test coverage detected