-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-er.gv
63 lines (58 loc) · 1.62 KB
/
data-er.gv
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
digraph g {
rankdir = TB;
node [shape=plaintext];
node [shape=box];
Person;
Edition;
Work;
Part;
Publisher;
Bookseries;
Pubseries;
User;
ShortStory;
Link;
node [shape=diamond];
Authored; Edited; Translated;
"Combined into";
"Part of";
"Published in";
Published;
"Owns";
"Collects";
Is;
Has;
"Also known as";
Person -> Authored [label = "m"];
Person -> "Also known as" [label = "m"];
"Also known as" -> Person [label = "n"];
Authored -> Part [label = "n"];
Person -> Translated [label = "m"];
Translated -> Part [label = "n"];
Person -> Edited [label = "m"];
Edited -> Edition [label = "n"];
Publisher -> Published [label = "1"];
Published -> Edition [label = "m"];
Published -> Pubseries [label = "n"];
Work -> "Part of" [label = "m"];
"Part of" -> Bookseries [label = "1"];
Edition -> "Published in" [label = "m"];
"Published in" -> Pubseries [label = "1"];
Part -> "Combined into" [label = "n"];
"Combined into" -> Edition [label = "n"];
"Combined into" -> Work [label = "m"];
Part -> Is [label = "n"];
Is -> ShortStory [label = "0..1"];
User -> Owns [label = "m"];
Owns -> Edition [label = "n"];
User -> "Collects" [label = "m"];
"Collects" -> Bookseries [label = "n"];
"Collects" -> Pubseries [label = "n"];
Has -> Link [label="1"];
Person -> Has [label = "m"];
Work -> Has [label = "m"];
Edition -> Has [label = "m"];
Pubseries -> Has [label = "m"];
Bookseries -> Has [label = "m"];
Publisher -> Has [label = "m"];
}