-
Notifications
You must be signed in to change notification settings - Fork 66
/
cmpl_bql_example_2.json
220 lines (220 loc) · 5.52 KB
/
cmpl_bql_example_2.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
{
"Name": "Family and car graph data example 2",
"Sources": [
{
"ID": "?family",
"Facts": [
"/u<joe> \"parent_of\"@[] /u<mary>",
"/u<joe> \"parent_of\"@[] /u<peter>",
"/u<peter> \"parent_of\"@[] /u<eve>",
"/u<mary> \"parent_of\"@[] /u<john>",
"/u<mary> \"parent_of\"@[] /u<anne>",
"/u<mary> \"parent_of\"@[] /u<amy>"
]
},
{
"ID": "?cars",
"Facts": [
"/u<joe> \"drives\"@[] /c<lexus>",
"/u<mary> \"drives\"@[] /c<mazda>",
"/u<peter> \"drives\"@[] /c<honda>",
"/u<eve> \"drives\"@[] /c<acura>",
"/u<john> \"drives\"@[] /c<subaru>",
"/u<anne> \"drives\"@[] /c<mini>",
"/u<amy> \"drives\"@[] /c<subaru>",
"/u<mike> \"drives\"@[] /c<volvo>",
"/u<kim> \"drives\"@[] /c<toyota>",
"/u<elon> \"drives\"@[] /c<tesla>"
]
}
],
"Assertions": [
{
"Requires": "finding how many grandchildren does Joe have",
"Statement": "
SELECT ?grandparent_name, COUNT(?grandchildren) AS ?number_of_grandchildren
FROM ?family
WHERE {
/u<joe> AS ?grandparent ID ?grandparent_name \"parent_of\"@[] ?offspring .
?offspring \"parent_of\"@[] ?grandchildren
}
GROUP BY ?grandparent_name;",
"WillFail": false,
"MustReturn": [
{
"?grandparent_name": "joe",
"?number_of_grandchildren": "\"4\"^^type:int64"
}
]
},
{
"Requires": "finding the different brands of car manufactures do we know",
"Statement": "
SELECT ?manufacturer
FROM ?cars
WHERE {
?owner \"drives\"@[] ?car ID ?manufacturer
}
GROUP BY ?manufacturer;",
"WillFail": false,
"MustReturn": [
{
"?manufacturer": "acura"
},
{
"?manufacturer": "honda"
},
{
"?manufacturer": "lexus"
},
{
"?manufacturer": "mazda"
},
{
"?manufacturer": "mini"
},
{
"?manufacturer": "subaru"
},
{
"?manufacturer": "tesla"
},
{
"?manufacturer": "toyota"
},
{
"?manufacturer": "volvo"
}
]
},
{
"Requires": "finding what cars does Joe's grandchildren drive in descending order?",
"Statement": "
SELECT ?manufacturer
FROM ?family, ?cars
WHERE {
/u<joe> \"parent_of\"@[] ?offspring .
?offspring \"parent_of\"@[] ?grandchildren .
?grandchildren \"drives\"@[] ?car ID ?manufacturer
}
GROUP BY ?manufacturer
ORDER BY ?manufacturer DESC;",
"WillFail": false,
"MustReturn": [
{
"?manufacturer": "subaru"
},
{
"?manufacturer": "mini"
},
{
"?manufacturer": "acura"
}
]
},
{
"Requires": "finding any unique owner and manufacture, list the manufacture in descending order, and for each manufacture order the owners in ascending order",
"Statement": "
SELECT ?manufacturer, ?owner
FROM ?family, ?cars
WHERE {
?owner_node ID ?owner \"drives\"@[] ?car ID ?manufacturer
}
GROUP BY ?owner, ?manufacturer
ORDER BY ?manufacturer DESC, ?owner ASC;",
"WillFail": false,
"MustReturn": [
{
"?manufacturer": "volvo",
"?owner": "mike"
},
{
"?manufacturer": "toyota",
"?owner": "kim"
},
{
"?manufacturer": "tesla",
"?owner": "elon"
},
{
"?manufacturer": "subaru",
"?owner": "amy"
},
{
"?manufacturer": "subaru",
"?owner": "john"
},
{
"?manufacturer": "mini",
"?owner": "anne"
},
{
"?manufacturer": "mazda",
"?owner": "mary"
},
{
"?manufacturer": "lexus",
"?owner": "joe"
},
{
"?manufacturer": "honda",
"?owner": "peter"
},
{
"?manufacturer": "acura",
"?owner": "eve"
}
]
},
{
"Requires": "finding the manufactures in descending order by number of owners",
"Statement": "
SELECT ?manufacturer, COUNT(?owner) AS ?owners
FROM ?family, ?cars
WHERE {
?owner_node ID ?owner \"drives\"@[] ?car ID ?manufacturer
}
GROUP BY ?manufacturer
ORDER BY ?owners DESC, ?manufacturer DESC;",
"WillFail": false,
"MustReturn": [
{
"?manufacturer": "subaru",
"?owners": "\"2\"^^type:int64"
},
{
"?manufacturer": "volvo",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "toyota",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "tesla",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "mini",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "mazda",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "lexus",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "honda",
"?owners": "\"1\"^^type:int64"
},
{
"?manufacturer": "acura",
"?owners": "\"1\"^^type:int64"
}
]
}
]
}