Finds all components that the given node ID depends on.
List<String> getDependencies(String nodeId) { return edges.where((e) => e.fromId == nodeId).map((e) => e.toId).toList(); }