-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgraph.json
More file actions
104 lines (104 loc) · 2.32 KB
/
graph.json
File metadata and controls
104 lines (104 loc) · 2.32 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"nodes": [
{
"id": "home",
"title": "home",
"url": "/index.html",
"type": "source"
},
{
"id": "about",
"title": "about",
"url": "/about.html",
"type": "target"
},
{
"id": "posts",
"title": "posts",
"url": "/blog.html",
"type": "source"
},
{
"id": "photos",
"title": "photos",
"url": "/photo.html",
"type": "target"
},
{
"id": "notes",
"title": "notes",
"url": "/note.html",
"type": "source"
},
{
"id": "self",
"title": "self",
"url": "/self.html",
"type": "source"
},
{
"id": "brain-notes",
"title": "brain-notes",
"url": "/brain.html",
"type": "source"
},
{
"id": "wall of shame",
"title": "wall of shame",
"url": "/blogs/wall.html",
"type": "target"
},
{
"id": "smth smth",
"title": "smth smth",
"url": "/blogs/blog6.html",
"type": "target"
},
{
"id": "bigmouth",
"title": "bigmouth",
"url": "/blogs/blog5.html",
"type": "target"
},
{
"id": "samsara",
"title": "samsara",
"url": "/blogs/blog4.html",
"type": "target"
},
{
"id": "reality shift",
"title": "reality shift",
"url": "/blogs/blog3.html",
"type": "target"
},
{
"id": "chaos cascade",
"title": "chaos cascade",
"url": "/blogs/blog2.html",
"type": "target"
},
{
"id": "halo",
"title": "halo",
"url": "/blogs/blog1.html",
"type": "target"
}
],
"links": [
{ "source": "home", "target": "about" },
{ "source": "home", "target": "posts" },
{ "source": "home", "target": "photos" },
{ "source": "posts", "target": "self" },
{ "source": "posts", "target": "notes" },
{ "source": "posts", "target": "brain-notes" },
{ "source": "self", "target": "bigmouth" },
{ "source": "self", "target": "samsara" },
{ "source": "self", "target": "smth smth" },
{ "source": "self", "target": "wall of shame" },
{ "source": "brain-notes", "target": "reality shift" },
{ "source": "brain-notes", "target": "chaos cascade" },
{ "source": "brain-notes", "target": "smth smth" },
{ "source": "self", "target": "halo" }
]
}