# IT:AD:PlantUML:HowTo:Draw Graphs:Data Model #
* [[../|(UP)]]
{{indexmenu>.#2|nsort tsort}}
## Examples
digraph er {
node[shape=box];
Customer;
Loan;
Book;
{rank=same;Book,Customer,Loan}
Book->Loan[dir="forward",arrowhead="crow",arrowtail="normal"];
Customer->Loan[dir="forward",arrowhead="crow",arrowtail="normal"];
}
digraph er {
node[shape=box];
Customer;
Loan;
Book;
{rank=same;Book,Customer,Loan}
Book->Loan[dir="forward",arrowhead="crow",arrowtail="normal"];
Customer->Loan[dir="forward",arrowhead="crow",arrowtail="normal"];
}
## Resources ##
* http://www.tonyballantyne.com/graphs.html#sec-4-4