-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate mermaid class diagram #634
Comments
Ar savybė t.y. ar turi būti kaip viršuj parodyta, ar taip? classDiagram
class Administration {
+ id: integer [1..1]
+ name: string [1..1]
+ type: string [1..1]
}
class AdministrationType {
<<enumeration>>
country
municipality
}
Administration ..> "[1..1]" AdministrationType : type |
Pagal UML, |
bet mes tada "pametam" |
Nepametam, |
Bet type yra Aišku, gal šitoje situacijoje nėra būtina? O gal pridėti kažkur kitur? |
Create a new Manifest, that can output model as mermaid diagram.
For example if we have following DSA table:
Command
spinta copy dsa.csv -o dsa.mmd
shoudl create adsa.mmd
file with following content:Which can be imported to draw.io and should be displayed as:
Documentation for Mermaid class diagrams: https://mermaid.js.org/syntax/classDiagram.html
Other relationships are:
dependency - relationship between two models that have references (
ref
orbackref
) to each other. It's indicated by this type of arrow:-->
inheritance - relationship between a model and it's base model. It's indicated by this type of arrow:
--|>
The text was updated successfully, but these errors were encountered: