-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.dot
63 lines (57 loc) · 2.63 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
graph {
# type: Query
Query_158033020[color=greenyellow, style=filled, label="Query"];
hero_849443759[color=snow2, style=filled, label="hero"];
id_271460069[label="id"];
hero_849443759 -- id_271460069;
planets_563031252[color=snow2, style=filled, label="planets"];
Query_158033020 -- hero_849443759;
Query_158033020 -- planets_563031252;
# type: Character
Character_963228187[color=greenyellow, style=filled, label="Character"];
name_507838526[color=snow2, style=filled, label="name"];
friends_535978454[color=snow2, style=filled, label="friends"];
homeWorld_1222655199[color=snow2, style=filled, label="homeWorld"];
Character_963228187 -- name_507838526;
Character_963228187 -- friends_535978454;
Character_963228187 -- homeWorld_1222655199;
# enum: PlanetType
PlanetType_786543134[color=mediumpurple1, style=filled, label="PlanetType"];
GAS_1260805330[label="GAS_GIANT,"];
NEPTUNIAN_1318265931[label="NEPTUNIAN,"];
SUPER_943577[label="SUPER_EARTH,"];
TERRESTRIAL_347819478[label="TERRESTRIAL"];
PlanetType_786543134 -- GAS_1260805330;
PlanetType_786543134 -- NEPTUNIAN_1318265931;
PlanetType_786543134 -- SUPER_943577;
PlanetType_786543134 -- TERRESTRIAL_347819478;
# type: Mutation
Mutation_693856677[color=greenyellow, style=filled, label="Mutation"];
updateCharacter_2104829072[color=snow2, style=filled, label="updateCharacter"];
id_191233178[label="id"];
friends_851988572[label="friends"];
updateCharacter_2104829072 -- id_191233178;
updateCharacter_2104829072 -- friends_851988572;
updatePlanet_689879595[color=snow2, style=filled, label="updatePlanet"];
name_781373765[label="name"];
climate_2047306155[label="climate"];
updatePlanet_689879595 -- name_781373765;
updatePlanet_689879595 -- climate_2047306155;
Mutation_693856677 -- updateCharacter_2104829072;
Mutation_693856677 -- updatePlanet_689879595;
# type: Planet
Planet_2138320748[color=greenyellow, style=filled, label="Planet"];
name_1718997747[color=snow2, style=filled, label="name"];
climate_762104039[color=snow2, style=filled, label="climate"];
type_1235389826[color=snow2, style=filled, label="type"];
Planet_2138320748 -- name_1718997747;
Planet_2138320748 -- climate_762104039;
Planet_2138320748 -- type_1235389826;
# Connections between types
Query_158033020 -- Character_963228187;
Query_158033020 -- Planet_2138320748;
Character_963228187 -- Character_963228187;
Character_963228187 -- Planet_2138320748;
Mutation_693856677 -- Planet_2138320748;
Planet_2138320748 -- PlanetType_786543134;
}