-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.js
More file actions
278 lines (257 loc) · 8.3 KB
/
schema.js
File metadata and controls
278 lines (257 loc) · 8.3 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
'use strict';
const gql = require('graphql-sync');
const GraphQLJSON = require('./graphql-type-json');
const validateToken = require('./token').validateToken;
const edgeList = require('./database').edgeList
const collectionList = require('./database').collectionList
const getObject = require('./database').getObject
const getList = require('./database').getList
let collectionSearch = {
id: {
type: gql.GraphQLString,
description: 'The id of the document.'
},
name: {
type: gql.GraphQLString,
description: 'The name of the document.'
},
provider: {
type: gql.GraphQLString,
description: 'The provider of the document.'
},
timestamp: {
type: gql.GraphQLString,
description: 'The timestamp of the document.'
}
}
let commonFields = {
id: {
type: new gql.GraphQLNonNull(gql.GraphQLString),
description: 'The id of the document.'
},
name: {
type: gql.GraphQLString,
description: 'The name of the document.'
},
provider: {
type: gql.GraphQLString,
description: 'The provider of the document.'
},
timestamp: {
type: gql.GraphQLString,
description: 'The timestamp of the document.'
},
properties: {
type: GraphQLJSON,
description: 'The properties of the document.'
},
properties_metadata: {
type: GraphQLJSON,
description: 'The properties metadata of the document.'
}
}
let edgeType = new Object()
let collectionType = new Object()
const directionType = new gql.GraphQLEnumType({
name: 'Directions',
description: 'Directions of edges.',
values: {
FROM: {
value: 'from',
description: 'From'
},
TO: {
value: 'to',
description: 'To'
}
}
});
let edgeSearch = {
direction: {
description: 'Direction of Link',
type: directionType
}
}
let getAlias = function(name){
let alias = name.replace(/(^|_)./g, s => s.slice(-1).toUpperCase())
return alias
}
let CollectionList = function () {
collectionList.forEach((coll) => {
let name = coll.collection.name
collectionType[name] = new gql.GraphQLObjectType({
name: getAlias(name),
description: coll.collection.alias,
fields: () => {
let fields = Object.assign({}, commonFields)
coll.edges.forEach((edge) => {
let args = Object.assign({}, collectionSearch, edgeSearch)
fields[edge.name] = {
description: edge.alias,
type: new gql.GraphQLList(edgeType[edge.name]),
args: args,
resolve(root, args) {
let res
if (args.direction != undefined) {
if (args.direction == 'from'){
args['_from'] = root._id
}
else{
args['_to'] = root._id
}
delete args.direction
res = getList(edge.name, args)
}
else{
args['_to'] = root._id
let res1 = getList(edge.name, args)
delete args._to
args['_from'] = root._id
let res2 = getList(edge.name, args)
res = res1.concat(res2)
}
return res
}
}
});
return fields
},
args: collectionSearch,
resolve(root, args) {
let res = getObject(name, args)
return res
}
});
});
edgeList.forEach((edge) => {
let name = edge.edge.name
edgeType[name] = new gql.GraphQLObjectType({
name: getAlias(name),
description: edge.edge.alias,
fields: () => {
let fields = Object.assign({}, commonFields)
fields['from'] = {
description: 'From',
type: GetFromType(edge),
resolve(root, args) {
return root
}
}
fields['to'] = {
description: 'To',
type: GetToType(edge),
resolve(root, args) {
return root
}
}
return fields
},
resolve(root, args) {
let res = getObject(name, args)
return res
},
args: {
direction: {
description: 'Direction',
type: gql.GraphQLString
}
}
});
});
}
let GetFromType = function (edge) {
let directionType = new gql.GraphQLObjectType({
name: getAlias(edge.edge.name + '_from'),
fields: () => {
let fields_coll = new Object()
fields_coll['id'] = {
type: gql.GraphQLString,
resolve(root, args) {
return root._from
}
}
edge.from_collections.forEach((coll) => {
fields_coll[coll.name] = {
description: coll.alias,
type: collectionType[coll.name],
args: collectionSearch,
resolve(root, args) {
args['_id'] = root._from
let res = getObject(coll.name, args)
return res
}
}
})
return fields_coll
}
})
return directionType
}
let GetToType = function (edge) {
let directionType = new gql.GraphQLObjectType({
name: getAlias(edge.edge.name + '_to'),
fields: () => {
let fields_coll = new Object()
fields_coll['id'] = {
type: gql.GraphQLString,
resolve(root, args) {
return root._to
}
}
edge.to_collections.forEach((coll) => {
fields_coll[coll.name] = {
description: coll.alias,
type: collectionType[coll.name],
args: collectionSearch,
resolve(root, args) {
args['_id'] = root._to
let res = getObject(coll.name, args)
return res
}
}
})
return fields_coll
}
})
return directionType
}
let GetQueryType = function () {
CollectionList()
let queryType = new gql.GraphQLObjectType({
name: 'query',
description: 'Query GloboMap',
fields: () => {
let fields_coll = new Object()
// All Collections
Object.keys(collectionType).map((name) => {
fields_coll[name] = {
type: collectionType[name],
args: collectionSearch,
resolve(root, args, context) {
validateToken(context)
let res = getObject(name, args)
return res
}
}
})
// All Edges
Object.keys(edgeType).map((name) => {
let args = Object.assign({}, collectionSearch)
fields_coll[name] = {
type: edgeType[name],
args: args,
resolve(root, args, context) {
validateToken(context)
let res = getObject(name, args)
return res
}
}
})
return fields_coll
}
});
return queryType
}
module.exports = new gql.GraphQLSchema({
query: GetQueryType()
});