-
Notifications
You must be signed in to change notification settings - Fork 66
/
cmpl_bql_graph_clauses.json
410 lines (409 loc) · 9.92 KB
/
cmpl_bql_graph_clauses.json
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
{
"Name": "Family graph clauses traversal",
"Sources": [
{
"ID": "?g",
"Facts": [
"/u<joe> \"parent_of\"@[] /u<mary>",
"/u<joe> \"parent_of\"@[] /u<peter>",
"/u<peter> \"parent_of\"@[] /u<john>",
"/u<peter> \"parent_of\"@[] /u<eve>"
]
}
],
"Assertions": [
{
"Requires": "Joe to have two grandchildren",
"Statement": "
SELECT ?name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name
}
ORDER BY ?name ASC;",
"WillFail": false,
"MustReturn": [
{
"?name": "eve"
},
{
"?name": "john"
}
]
},
{
"Requires": "Joe has two children despite redundant clause",
"Statement": "
SELECT ?repeated_name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c ID ?repeated_name .
/u<joe> \"parent_of\"@[] ?c ID ?repeated_name
}
ORDER BY ?repeated_name ASC;",
"WillFail": false,
"MustReturn": [
{
"?repeated_name": "mary"
},
{
"?repeated_name": "peter"
}
]
},
{
"Requires": "four possible combinations of Joe's children",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c1 ID ?name_1 .
/u<joe> \"parent_of\"@[] ?c2 ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC;",
"WillFail": false,
"MustReturn": [
{
"?name_1": "mary",
"?name_2": "mary"
},
{
"?name_1": "mary",
"?name_2": "peter"
},
{
"?name_1": "peter",
"?name_2": "mary"
},
{
"?name_1": "peter",
"?name_2": "peter"
}
]
},
{
"Requires": "Joe's grandchildren should product four combinations",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
?c \"parent_of\"@[] ?gc2 ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC;",
"WillFail": false,
"MustReturn": [
{
"?name_1": "eve",
"?name_2": "eve"
},
{
"?name_1": "eve",
"?name_2": "john"
},
{
"?name_1": "john",
"?name_2": "eve"
},
{
"?name_1": "john",
"?name_2": "john"
}
]
},
{
"Requires": "returning the first Joe's grandchildren of the possible combinations",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name_1 .
?c \"parent_of\"@[] ?gc ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC
LIMIT \"1\"^^type:int64;",
"WillFail": false,
"MustReturn": [
{
"?name_1": "eve",
"?name_2": "eve"
}
]
},
{
"Requires": "Joe's grandchildren combinations to be returned only if both have the same name",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name_1 .
?c \"parent_of\"@[] ?gc ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC
HAVING ?name_1 = ?name_2;",
"WillFail": false,
"MustReturn": [
{
"?name_1": "eve",
"?name_2": "eve"
},
{
"?name_1": "john",
"?name_2": "john"
}
]
},
{
"Requires": "Joe's grandchildren combinations to be returned only if both do not have the same name",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
?c \"parent_of\"@[] ?gc2 ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC
HAVING NOT(?name_1 = ?name_2);",
"WillFail": false,
"MustReturn": [
{
"?name_1": "eve",
"?name_2": "john"
},
{
"?name_1": "john",
"?name_2": "eve"
}
]
},
{
"Requires": "Joe's grandchildren combinations to be returned only if the first name is less than the second one",
"Statement": "
SELECT ?name_1, ?name_2
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
?c \"parent_of\"@[] ?gc2 ID ?name_2
}
ORDER BY ?name_1 ASC, ?name_2 ASC
HAVING ?name_1 < ?name_2;",
"WillFail": false,
"MustReturn": [
{
"?name_1": "eve",
"?name_2": "john"
}
]
},
{
"Requires": "listing all the possible four combination of Joe's children and grandchildren",
"Statement": "
SELECT ?name_children, ?name_grandchildren
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name_grandchildren .
/u<joe> \"parent_of\"@[] ?oc ID ?name_children
}
ORDER BY ?name_children ASC, ?name_grandchildren ASC;",
"WillFail": false,
"MustReturn": [
{
"?name_children": "mary",
"?name_grandchildren": "eve"
},
{
"?name_children": "mary",
"?name_grandchildren": "john"
},
{
"?name_children": "peter",
"?name_grandchildren": "eve"
},
{
"?name_children": "peter",
"?name_grandchildren": "john"
}
]
},
{
"Requires": "listing all the possible four combination of Joe's children and grandchildren only if the children has kids",
"Statement": "
SELECT ?name_children, ?name_grandchildren
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c ID ?name_children .
?c \"parent_of\"@[] ?gc ID ?name_grandchildren
}
ORDER BY ?name_children ASC, ?name_grandchildren ASC;",
"WillFail": false,
"MustReturn": [
{
"?name_children": "peter",
"?name_grandchildren": "eve"
},
{
"?name_children": "peter",
"?name_grandchildren": "john"
}
]
},
{
"Requires": "listing Joe as the only grandparent",
"Statement": "
SELECT ?grandparent
FROM ?g
WHERE {
?gp ID ?grandparent \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?gc
}
GROUP BY ?grandparent;",
"WillFail": false,
"MustReturn": [
{
"?grandparent": "joe"
}
]
},
{
"Requires": "counting XX two as the number of grand children Joe has",
"Statement": "
SELECT ?grandparent, COUNT(?gc) AS ?number_of_grandchildren
FROM ?g
WHERE {
?gp ID ?grandparent \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?gc
}
GROUP BY ?grandparent;",
"WillFail": false,
"MustReturn": [
{
"?grandparent": "joe",
"?number_of_grandchildren": "\"2\"^^type:int64"
}
]
},
{
"Requires": "Joe has two kids and one is Mary for sure",
"Statement": "
SELECT ?mary_name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] /u<mary> .
/u<joe> \"parent_of\"@[] ?c ID ?mary_name
}
ORDER BY ?mary_name ASC;",
"WillFail": false,
"MustReturn": [
{
"?mary_name": "mary"
},
{
"?mary_name": "peter"
}
]
},
{
"Requires": "no Joe's children gets returned if he does not have one called Zoe",
"Statement": "
SELECT ?impossible_name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] /u<zoe> .
/u<joe> \"parent_of\"@[] ?c ID ?impossible_name
}
ORDER BY ?impossible_name ASC;",
"WillFail": false,
"MustReturn": [
]
},
{
"Requires": "Joe has at least two children and their names are Eve and John",
"Statement": "
SELECT ?name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name .
?parent \"parent_of\"@[] /u<eve> .
?other_parent \"parent_of\"@[] /u<john>
}
ORDER BY ?name ASC;",
"WillFail": false,
"MustReturn": [
{
"?name": "eve"
},
{
"?name": "john"
}
]
},
{
"Requires": "Joe has at least two children and their names are Eve and John and both share the same parent",
"Statement": "
SELECT ?name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name .
?parent \"parent_of\"@[] /u<eve> .
?other_parent \"parent_of\"@[] /u<john>
}
ORDER BY ?name ASC
HAVING ?parent = ?other_parent;",
"WillFail": false,
"MustReturn": [
{
"?name": "eve"
},
{
"?name": "john"
}
]
},
{
"Requires": "Joe has at least two children and their names are Eve and John and both are children of Peter",
"Statement": "
SELECT ?name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name .
/u<peter> \"parent_of\"@[] /u<eve> .
/u<peter> \"parent_of\"@[] /u<john>
}
ORDER BY ?name ASC;",
"WillFail": false,
"MustReturn": [
{
"?name": "eve"
},
{
"?name": "john"
}
]
},
{
"Requires": "Joe has no two children and bot are children of Mary",
"Statement": "
SELECT ?name
FROM ?g
WHERE {
/u<joe> \"parent_of\"@[] ?c .
?c \"parent_of\"@[] ?gc ID ?name .
/u<mary> \"parent_of\"@[] ?name
}
ORDER BY ?name ASC;",
"WillFail": false,
"MustReturn": [
]
}
]
}