forked from 6aika/api-palaute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalaute-graph.gvt
54 lines (45 loc) · 1.21 KB
/
palaute-graph.gvt
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
strict digraph model_graph {
fontname = "Helvetica"
fontsize = 8
splines = true
node [
fontname = "Helvetica"
fontsize = 8
]
edge [
fontname = "Helvetica"
fontsize = 8
]
{{#c}}
{{name}} [shape=none, label=<
<TABLE BGCOLOR="#fffad2" BORDER="0" CELLBORDER="0" CELLSPACING="0">
<TR><TD COLSPAN="2" CELLPADDING="4" ALIGN="CENTER" BGCOLOR="#439eff">
<FONT FACE="Helvetica Bold" COLOR="white">
{{ title }}</FONT></TD></TR>
{{#properties}}
<TR><TD ALIGN="LEFT" BORDER="0">
<FONT FACE="Helvetica Bold">{{name}}</FONT>
</TD><TD ALIGN="LEFT">
<FONT FACE="Helvetica Bold">{{description}}</FONT>
</TD></TR>
{{/properties}}
</TABLE>
>]
{{/c}}
subgraph cluster_components {
label="Request components"
request_georeport; request_citysdk; request_helsinki; request_6aika
}
subgraph cluster_api {
label="API data types"
Request; Service
}
request_georeport -> Request
[arrowhead=diamond, arrowtail=none, dir=both];
request_citysdk -> Request
[arrowhead=diamond, arrowtail=none, dir=both];
request_helsinki -> Request
[arrowhead=diamond, arrowtail=none, dir=both];
request_6aika -> Request
[arrowhead=diamond, arrowtail=none, dir=both];
}