-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.dot
91 lines (90 loc) · 1.95 KB
/
example.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
digraph G {
node [
resolution = "200";
fontsize = "10";
fontname = "Free Mono Bold";
fontcolor = "gray";
color = "gray";
shape = "record";
];
edge [
color = "gray";
arrowtail = "odot";
arrowhead = "vee";
dir = "both";
arrowsize = "0.3";
fontsize = "10";
fontname = "Free Mono Bold";
];
graph [
overlap = "false";
splines = "true";
bgcolor = "white";
dpi = "120";
rankdir = "LR";
pad = "1";
];
"user" [
label = "User";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"user" -> "item" [ color = deepskyblue4; fontcolor = white;];
"user" -> "message" [ color = deepskyblue4; fontcolor = white;];
"user" -> "legal_person" [ color = deepskyblue4; fontcolor = white;];
"user 2" [
label = "User";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"legal_person" [
label = "Legal person";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"item" [
label = "Item | {:field 1\l
:field 2\l
:field 3\l
}"; color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"item" -> "user 2" [ color = deepskyblue4; fontcolor = white;];
"message" [
label = "Message";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"language" [
label = "Language | {:ru\l
:en\l
}"; color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"uiux" -> "language" [ color = deepskyblue4; fontcolor = white;];
"uiux" [
label = "UI/UX";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"countries" [
label = "Countries";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
"countries" -> "addresses" [ color = deepskyblue4; fontcolor = white;];
"addresses" [
label = "Addresses";
color = "deepskyblue4";
fontcolor = "white";
style = "filled";
];
}