Open SoylentBob opened 2 months ago
A better way to do this could be a vertically displayed diagram:
@startuml
together {
package "afferentPackageA" {
}
package "afferentPackageB" {
}
}
package "myPackage" {
}
together {
package "efferentPackageA" {
}
package "efferentPackageB" {
}
package "efferentPackageC" {
}
}
afferentPackageA --> myPackage : uses
afferentPackageB --> myPackage : uses
myPackage --> efferentPackageA : uses
myPackage --> efferentPackageB : uses
myPackage --> efferentPackageC : uses
@enduml
It would be a great feature to access a diagram of the afferent and efferent component dependencies directly from the component dependencies view. This should be displayed when I want to dig deeper into one specific component and find out which components use it and which components it uses.
It should basically be a graph like this (but with a more appropriate layout), where myPackage is the package I want to dig deeper into: