-
Notifications
You must be signed in to change notification settings - Fork 0
/
data
112 lines (91 loc) · 2.76 KB
/
data
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
105
106
107
108
109
110
111
112
mutation {
schema {
name: string @index(exact, term) .
skill: uid @reverse @count .
type: string @index(exact) .
name: string @index(exact, term) .
desc: string .
tag: uid @reverse @count .
}
set {
_:javascript <name> "javascript" .
_:javascript <type> "skill" .
_:sql <name> "sql" .
_:sql <type> "skill" .
_:go <name> "go" .
_:go <type> "skill".
_:ruby <name> "ruby" .
_:ruby <type> "skill" .
_:db <name> "db" .
_:db <type> "skill".
_:linux <name> "linux" .
_:linux <type> "skill" .
_:architecture <name> "architecture" .
_:architecture <type> "skill" .
_:php <name> "php" .
_:php <type> "skill".
_:mongo <name> "mongo" .
_:mongo <type> "skill".
_:windows <name> "windows" .
_:windows <type> "skill".
_:networking <name> "networking" .
_:networking <type> "skill".
_:docker <name> "docker" .
_:docker <type> "skill".
_:kubernetes <name> "kubernetes" .
_:kubernetes <type> "skill".
_:aws <name> "aws" .
_:aws <type> "skill".
_:azure <name> "azure" .
_:azure <type> "skill".
_:first_ticket <name> "First Ticket" .
_:first_ticket <desc> "This is the first ticket..." .
_:first_ticket <type> "ticket" .
_:first_ticket <tag> _:go .
_:first_ticket <tag> _:db .
_:first_ticket <tag> _:sql .
_:second_ticket <name> "Second Ticket" .
_:second_ticket <desc> "This is the second ticket..." .
_:second_ticket <type> "ticket" .
_:second_ticket <tag> _:javascript .
_:second_ticket <tag> _:mongo .
_:second_ticket <tag> _:linux .
_:john <name> "john" .
_:john <type> "user" .
_:john <skill> _:sql .
_:john <skill> _:javascript .
_:john <skill> _:go .
_:john <skill> _:ruby .
_:john <skill> _:db .
_:john <skill> _:linux .
_:jeremy <name> "jeremy" .
_:jeremy <type> "user" .
_:jeremy <skill> _:architecture .
_:jeremy <skill> _:php .
_:jeremy <skill> _:go .
_:jeremy <skill> _:mongo .
_:jeremy <skill> _:windows .
_:jeremy <skill> _:bash .
_:thomas <name> "thomas" .
_:thomas <type> "user" .
_:thomas <skill> _:linux .
_:thomas <skill> _:sql .
_:thomas <skill> _:javascript .
_:thomas <skill> _:windows .
_:thomas <skill> _:db .
_:thomas <skill> _:networking .
_:chris <name> "chris" .
_:chris <type> "user" .
_:chris <skill> _:docker .
_:chris <skill> _:kubernetes .
_:chris <skill> _:aws .
_:chris <skill> _:azure .
_:chris <skill> _:architecture .
_:alex <name> "alex" .
_:alex <type> "user" .
_:alex <skill> _:mongo .
_:alex <skill> _:javascript .
_:alex <skill> _:ruby .
_:alex <skill> _:php .
}
}