You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚠️ Is your feature request related to a problem? Please describe
When you have some nested and some non-nested modules the graph becomes messy when showFullPath = false. Ideally a subgraph would be nested within any existing parent graphs.
💡 Describe the solution you'd like
Support for nesting modules in the graph. Possibly via a config boolean, or enabled by default.
Here is what currently is produced:
%%{
init: {
'theme': 'neutral'
}
}%%
graph LR
subgraph :libs
:libs:app-common["app-common"]
end
subgraph :libs:crash-reporting
:libs:crash-reporting:api["api"]
:libs:crash-reporting:firebase["firebase"]
end
:App --> :libs:app-common
:App --> :libs:crash-reporting:api
:App --> :libs:crash-reporting:firebase
classDef focus fill:#769566,stroke:#fff,stroke-width:2px,color:#fff;
class :App focus
Loading
Here is what I would like if nesting modules is enabled:
%%{
init: {
'theme': 'neutral'
}
}%%
graph LR
subgraph :libs
:libs:app-common["app-common"]
subgraph :crash-reporting
:libs:crash-reporting:api["api"]
:libs:crash-reporting:firebase["firebase"]
end
end
:App --> :libs:app-common
:App --> :libs:crash-reporting:api
:App --> :libs:crash-reporting:firebase
classDef focus fill:#769566,stroke:#fff,stroke-width:2px,color:#fff;
class :App focus
Loading
🤚 Do you want to develop this feature yourself?
Yes
No
Maybe if I find some time 😄
The text was updated successfully, but these errors were encountered:
When you have some nested and some non-nested modules the graph becomes messy when
showFullPath = false
. Ideally a subgraph would be nested within any existing parent graphs.💡 Describe the solution you'd like
Support for nesting modules in the graph. Possibly via a config boolean, or enabled by default.
Here is what currently is produced:
Here is what I would like if nesting modules is enabled:
🤚 Do you want to develop this feature yourself?
The text was updated successfully, but these errors were encountered: