This issue is about ideas to improve the graph output.
Currently the data is partial, arbitrarily including dependencies only the first time they are encountered.
This is arguably better than including all possible paths, because the graph would quickly become huge.
Alternatives:
Include all possible paths (very ugly)
Include only the deepest path (from root) to each node. May be misleading if there are "more important" (subjectively) paths that are shorter.
Cluster big groups of shared dependencies and point to them from multiple dependents.
This issue is about ideas to improve the graph output.
Currently the data is partial, arbitrarily including dependencies only the first time they are encountered. This is arguably better than including all possible paths, because the graph would quickly become huge.
Alternatives: