-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexamples.js
507 lines (506 loc) · 13.1 KB
/
examples.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
"use strict"
exports.examples = {
"intro": {
"idMember": "_id",
"types": {
"Intro": {
"name": "String",
"filter": "String",
"search": "String"
},
},
"values": {
"Intro": [
{
"name": "jrGQL",
"filter": "to get a field",
"search": "for values"
}
],
},
"tests": [
{
"title": "jrGQL",
"description": [
"A minimalist query language",
"James RegExp Graph Query Language. Just kidding, no one names a QL about himself.",
"<strong>JSON RegExp Graph Query Language</strong>. jr is small, so you can read it as junior, GQL is capitalized because it is more readable than gql.",
"Write standard JSON to search and use regular expressions to filter keys and search values.",
],
"rootType": "Intro",
"input": {
"// JSON RegExp Graph Query Language": "",
"name": "jrGQL",
"?[filter]*": "",
"search?": ".*values$"
},
"output": [{
"name": "jrGQL",
"filter": "to get a field",
"search": "for values"
}]
},
]
},
"usergroup": {
"idMember": "_id",
"types": {
"User": {
"_id": "Integer",
"name": "String",
"email": "String",
"boss": "User",
"groups": "Group[]",
},
"Group": {
"_id": "Integer",
"name": "String",
"tags": "String[]",
"members": "User[]",
},
"Address": {
"_id": "Integer",
"address": "Object",
}
},
"values": {
"User": [
{
"_id": 1,
"name": "James",
"email": "[email protected]",
"boss": 2,
"groups": [
4, 5
]
},
{
"_id": 2,
"name": "Wife",
"email": "[email protected]",
"boss": 3,
"groups": [
4, 6
]
},
{
"_id": 3,
"name": "Cat",
"email": "[email protected]",
"boss": null,
"groups": [
5
]
},
],
"Group": [
{
"_id": 4,
"name": "Humans",
"tags": [
"2-legged", "has2pay4food"
],
"members": [
1, 2
]
},
{
"_id": 5,
"name": "Boys",
"tags": [
"facialHair"
],
"members": [
1, 3
]
},
{
"_id": 6,
"name": "Girls",
"tags": [
"simplyTheBest"
],
"members": [
2
]
}
],
"Address": [
{
"_id": 7,
"address": {
"zip": 6723,
"city": "Szeged",
}
}
],
},
"tests": [
{
"title": "Filter",
"description": [
"Filter by key of an object",
"If a key starts with <code>?</code> then the rest of the key is used as a regular expression.",
"See the example to get all the members."
],
"rootType": "User",
"input": {
"name": "James",
"?.*": ""
},
"output": [{
"_id": 1,
"name": "James",
"email": "[email protected]",
"boss": 2,
"groups": [ 4, 5 ]
}]
},
{
"title": "Search",
"description": [
"Search for a subset of objects",
"If a key ends with <code>?</code> then the value is used to select the objects.",
"If a key not starts with and neither ends with <code>?</code> then no RegExp search is issued, just simple equality is checked for the value."
],
"rootType": "User",
"input": {
"name?": ".a.*",
},
"output": [
{ "name": "James" },
{ "name": "Cat" }
]
},
{
"title": "Simple filtering",
"description": [
"Query only the needed fields",
"Note that <code>?key</code> is interpreted as <code>?^key$</code>.",
"<code>^</code> and <code>$</code> is always applied to regular expressions for keys."
],
"rootType": "User",
"input": {
"name": "James",
"?email": ""
},
"output": [{
"name": "James",
"email": "[email protected]",
}]
},
{
"title": "Deep query",
"description": [
"Depth is unlimited",
"In a graph you can go into any depth by embedding queries."
],
"rootType": "User",
"input": {
"name": "James",
"?boss": {
"?name": "",
"?boss": {
"?name": ""
}
}
},
"output": [{
"name": "James",
"boss": {
"name": "Wife",
"boss": {
"name": "Cat"
}
}
}]
},
{
"title": "Multiple queries",
"description": [
"Issue any number of query at once",
"Just start the query as an array. The inner queries are interpreted in the given order.",
],
"rootType": "User",
"input": [
{
"// first query": "",
"name": "James",
"?email": "",
},
{
"// second query": "",
"?name": "",
"email": "[email protected]",
}
],
"output": [
[
{
"name": "James",
"email": "[email protected]",
},
],
[
{
"name": "Cat",
"email": "[email protected]",
},
]
]
},
{
"title": "Inline object",
"description": [
"Inline objects are fully supported",
"Use them naturally.",
"If you are interested in the example data set, check the next section. Or switch to the graph viewer."
],
"rootType": "Address",
"input": [
{
"// returns the whole inline object": "",
"?.*": ""
},
{
"// filters the inline object": "",
"?address": {
"?zip": ""
}
},
],
"output": [
[
{
"_id": 7,
"address": {
"zip": 6723,
"city": "Szeged",
}
}
],
[
{
"address": {
"zip": 6723,
}
}
],
],
},
{
"title": "Array of objects",
"description": [
"Arrays are fully supported",
"Use them naturally.",
"This example exists only to run the unit tests. Check the source code of this page, all functionality was tested on load."
],
"rootType": "User",
"input": {
"name": "James",
"// get the names of my groups": "",
"?groups": [
{
"?name": ""
}
]
},
"output": [{
"name": "James",
"groups": [
{
"name": "Humans"
},
{
"name": "Boys"
}
]
}]
},
{
"title": "Array of primitives",
"description": [
"Simple types in arrays are supported",
"Simple values can be listed inside arrays, just query <code>[]</code> as the value.",
"Operators (like search) are supported for array values too."
],
"rootType": "Group",
"input": [
{
"// all array values": "",
"name": "Humans",
"?tags": []
},
{
"// only some tags": "",
"name": "Humans",
"?tags": [
"has2.*4food"
]
},
{
"// groups with these tags": "",
"?name": "",
"tags?": [
"has2.*4food"
]
},
],
"output": [
[{
"name": "Humans",
"tags": [
"2-legged", "has2pay4food"
]
}],
[{
"name": "Humans",
"tags": [
"has2pay4food"
]
}],
[{
"name": "Humans",
"tags": [
"2-legged",
"has2pay4food"
]
}],
]
},
{
"title": "Mutation",
"description": [
"Create, update, delete",
"To create, wrap the new item in an object with <code>\"+\"</code> key. Result is the new item.",
"To update, use <code>*key</code> notation. Result is the updated item and id is always returned.",
"To delete, wrap the query in an object with <code>\"-\"</code> key. Result is the deleted item and id is always returned.",
],
"rootType": "User",
"input": [
{
"// create": "",
"+": {
"name": "James2",
"email": "[email protected]",
}
},
{
"// update": "",
"name": "James2",
"*email": "[email protected]",
},
{
"// delete": "",
"-": {
"name": "James2",
"?email": "",
}
},
],
"output": [
[{
"_id": 8,
"name": "James2",
"email": "[email protected]",
}],
[{
"_id": 8,
"name": "James2",
"email": "[email protected]",
}],
[{
"_id": 8,
"name": "James2",
"email": "[email protected]",
}],
]
},
{
"title": "Action",
"description": [
"Run server side actions",
"To call a server action wrap the call in an object with <code>\"!\"</code> key. Result is an array filled up with the results.",
"You can do multiple calls in an array.",
"Parameters can be empty, an array or an object.",
"<em>Be responsible!</em> Not everything needs an action. In the example below the <em>type.init</em> can be done with a simple query too: <code>{\"*district\":\"Tarjan\"}</code>."
],
"rootType": "Address",
"input": [
{ "!": { "type.reset": "" } },
{
"!": [
{ "type.expand": [ "district:String" ] },
{ "type.init": { "district": "Tarjan" } },
]
},
],
"output": [
[ "OK" ],
[
[ "Done" ],
[ { "changedRecords": 1 } ],
]
]
},
{
"title": "Operator",
"description": [
"Filter values based on operators",
"As search (<code>key?</code>) is a RegExp match operator, integer comparisons are also operators. <code>\"field>\": value</code> matches if <em>field > value</em> is true."
],
"rootType": "Address",
"input": [
{
"?address": {
"zip>": 6700,
"?city": ""
}
},
{
"?address": {
"zip<": 6700,
"?city": ""
}
},
],
"output": [
[{
"address": {
"zip": 6723,
"city": "Szeged"
}
}],
[]
]
},
{
"title": "Variables",
"description": [
"Set variables of query",
"With <code>\"!variable\": value</code> you can also affect the results.",
"Built in variables are <em>from</em>, <em>limit</em>, <em>indentation</em> and <em>type</em>.",
"<em>from</em> value can be a count (<code>\"!from\": 1</code>), a \"matcher\" (<code>\"!from\": { \"_id\": 1 }</code>) or a cursor (<code>\"!from\": \"#0\"</code>) returned by the server when previous query stopped by a limit.",
"<em>type</em> is an optional variable both to support different endpoints for each root type (this is what all the other tests use) and to support a fully qualified query like this. In this reference implementation <em>indentation</em> and <em>type</em> are remembered."
],
"input": [
{
"!indentation": " ",
"!type": "User",
},
{ "!limit": 1 , "name?": ".a.*" },
{ "!from": 1 , "name?": ".a.*" },
{ "!from": "#0" , "name?": ".a.*" },
{ "!from": { "name": "Cat" }, "name?": ".a.*" }
],
"output": [
[],
[{ "name": "James", "_cursor": "#0" } ],
[{ "name": "Cat" } ],
[{ "name": "Cat" } ],
[{ "name": "Cat" } ],
]
},
],
}
}