forked from abruzzi/graphviz-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmarks.dot
More file actions
16 lines (13 loc) · 703 Bytes
/
bookmarks.dot
File metadata and controls
16 lines (13 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
digraph G{
node [ shape = "record", fontname = "Open Sans", fontsize = 16, \
fontcolor="#ffffff", style="filled", color="#1FB6C3", fillcolor="#1FB6C3bf"];
edge [ fontname = "Open Sans", fontsize = 16,
color="#1FB6C3", fontcolor="#1FB6C3" ];
feed [ label = "{Feed|+ url: string\l+ title: string\l+ id: number\l}" ];
user [ label = "{User|+ name: string\l+ avator: string\l+ id: number\l}" ];
node [fontcolor="#ffffff", style="filled", color="#1BB470", fillcolor="#1BB470bf"];
user_feed [label="{UserFeed|+ userId: number\l+ feedId: number\l}"];
edge [ arrowhead = "empty" ];
feed->user_feed [arrowhead="none", label="1..*"];
user->user_feed [arrowhead="none", label="1..*"];
}