forked from typedb/typedb-driver-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueries.java
299 lines (242 loc) · 13 KB
/
Queries.java
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
package grakn.example.phoneCalls;
import grakn.client.GraknClient;
import grakn.client.answer.Numeric;
import graql.lang.query.GraqlGet;
import java.util.*;
import static graql.lang.Graql.parse;
public class Queries {
public abstract static class QueryExample {
String question;
public QueryExample(String question) {
this.question = question;
}
String getQuestion() { return this.question; }
public abstract <T> T executeQuery(GraknClient.Transaction transaction);
}
public static void main(String[] args) {
List<QueryExample> queryExamples = initialiseQueryExamples();
Scanner scanner = new Scanner(System.in);
System.out.print("For which of these questions, on the phone_calls knowledge graph, do you want to execute the query?\n");
for (int i = 0; i < queryExamples.size(); i++) {
System.out.println(i + 1 + ": " + queryExamples.get(i).getQuestion());
}
int qsNumber = -1;
while (qsNumber < 0 || qsNumber > queryExamples.size()) {
System.out.print("choose a number (enter 0 for to answer all questions): ");
try {
qsNumber = scanner.nextInt();
} catch (InputMismatchException e) {
scanner.nextLine();
System.out.println();
System.out.println("Please enter a number!");
}
}
System.out.println();
processSelection(qsNumber, queryExamples, "phone_calls");
}
static void processSelection(Integer qsNumber, List<QueryExample> queryExamples, String keyspaceName) {
GraknClient client = new GraknClient("localhost:48555");
GraknClient.Session session = client.session(keyspaceName);
GraknClient.Transaction transaction = session.transaction().read();
if (qsNumber == 0) {
queryExamples.forEach(queryExample -> {
queryExample.executeQuery(transaction);
});
} else {
queryExamples.get(qsNumber - 1).executeQuery(transaction);
}
transaction.close();
session.close();
client.close();
}
// GRAQL QUERY EXAMPLES
static List<QueryExample> initialiseQueryExamples() {
List<QueryExample> queryExamples = new ArrayList<>();
queryExamples.add(new QueryExample("Since September 14th, which customers called the person with phone number +86 921 547 9004?") {
@Override
public <T> T executeQuery(GraknClient.Transaction transaction) {
printToLog("Question: ", this.question);
List<String> queryAsList = Arrays.asList(
"match",
" $customer isa person, has phone-number $phone-number;",
" $company isa company, has name \"Telecom\";",
" (customer: $customer, provider: $company) isa contract;",
" $target isa person, has phone-number \"+86 921 547 9004\";",
" (caller: $customer, callee: $target) isa call, has started-at $started-at;",
" $min-date == 2018-09-14T17:18:49; $started-at > $min-date;",
"get $phone-number;"
);
printToLog("Query:", String.join("\n", queryAsList));
String query = String.join("", queryAsList);
List<String> result = new ArrayList<>();
transaction.execute((GraqlGet) parse(query)).get().forEach(answer -> {
result.add(
answer.get("phone-number").asAttribute().value().toString()
);
});
printToLog("Result: ", String.join(", ", result));
return (T) result;
}
});
queryExamples.add(new QueryExample("Who are the people who have received a call from a London customer aged over 50 who has previously called someone aged under 20?") {
@Override
public <T> T executeQuery(GraknClient.Transaction transaction) {
printToLog("Question: ", this.question);
List<String> queryAsList = Arrays.asList(
"match ",
" $suspect isa person, has city \"London\", has age > 50;",
" $company isa company, has name \"Telecom\";",
" (customer: $suspect, provider: $company) isa contract;",
" $pattern-callee isa person, has age < 20;",
" (caller: $suspect, callee: $pattern-callee) isa call, has started-at $pattern-call-date;",
" $target isa person, has phone-number $phone-number;",
" not { (customer: $target, provider: $company) isa contract; };",
" (caller: $suspect, callee: $target) isa call, has started-at $target-call-date;",
" $target-call-date > $pattern-call-date;",
"get $phone-number;"
);
printToLog("Query:", String.join("\n", queryAsList));
String query = String.join("", queryAsList);
List<String> result = new ArrayList<>();
transaction.execute((GraqlGet) parse(query)).get().forEach(answer -> {
result.add(
answer.get("phone-number").asAttribute().value().toString()
);
});
printToLog("Result: ", String.join(", ", result));
return (T) result;
}
});
queryExamples.add(new QueryExample("Who are the common contacts of customers with phone numbers +7 171 898 0853 and +370 351 224 5176?") {
@Override
public <T> T executeQuery(GraknClient.Transaction transaction) {
printToLog("Question: ", this.question);
List<String> queryAsList = Arrays.asList(
"match ",
" $common-contact isa person, has phone-number $phone-number;",
" $customer-a isa person, has phone-number \"+7 171 898 0853\";",
" $customer-b isa person, has phone-number \"+370 351 224 5176\";",
" (caller: $customer-a, callee: $common-contact) isa call;",
" (caller: $customer-b, callee: $common-contact) isa call;",
"get $phone-number;"
);
printToLog("Query:", String.join("\n", queryAsList));
String query = String.join("", queryAsList);
Set<String> result = new HashSet<>();
transaction.execute((GraqlGet) parse(query)).get().forEach(answer -> {
result.add(
answer.get("phone-number").asAttribute().value().toString()
);
});
printToLog("Result: ", String.join(", ", result));
return (T) result;
}
});
queryExamples.add(new QueryExample("Who are the customers who 1) have all called each other and 2) have all called person with phone number +48 894 777 5173 at least once?") {
@Override
public <T> T executeQuery(GraknClient.Transaction transaction) {
printToLog("Question: ", this.question);
List<String> queryAsList = Arrays.asList(
"match ",
" $target isa person, has phone-number \"+48 894 777 5173\";",
" $company isa company, has name \"Telecom\";",
" $customer-a isa person, has phone-number $phone-number-a;",
" (customer: $customer-a, provider: $company) isa contract;",
" (caller: $customer-a, callee: $target) isa call;",
" $customer-b isa person, has phone-number $phone-number-b;",
" (customer: $customer-b, provider: $company) isa contract;",
" (caller: $customer-b, callee: $target) isa call;",
" (caller: $customer-a, callee: $customer-b) isa call;",
"get $phone-number-a, $phone-number-b;"
);
printToLog("Query:", String.join("\n", queryAsList));
String query = String.join("", queryAsList);
Set<String> result = new HashSet<>();
transaction.execute((GraqlGet) parse(query)).get().forEach(answer -> {
result.add(answer.get("phone-number-a").asAttribute().value().toString());
result.add(answer.get("phone-number-b").asAttribute().value().toString());
});
printToLog("Result: ", String.join(", ", result));
return (T) result;
}
});
queryExamples.add(new QueryExample("How does the average call duration among customers aged under 20 compare those aged over 40?") {
@Override
public <T> T executeQuery(GraknClient.Transaction transaction) {
printToLog("Question: ", this.question);
List<String> firstQueryAsList = Arrays.asList(
"match",
" $customer isa person, has age < 20;",
" $company isa company, has name \"Telecom\";",
" (customer: $customer, provider: $company) isa contract;",
" (caller: $customer, callee: $anyone) isa call, has duration $duration;",
"get $duration; mean $duration;"
);
printToLog("First Query:", String.join("\n", firstQueryAsList));
String firstQuery = String.join("", firstQueryAsList);
List<Float> result = new ArrayList<>();
List<Numeric> firstAnswers = transaction.execute((GraqlGet.Aggregate) parse(firstQuery)).get();
float fisrtResult = 0;
if (firstAnswers.size() > 0) {
fisrtResult = firstAnswers.get(0).number().floatValue();
result.add(fisrtResult);
}
String output = "Customers aged under 20 have made calls with average duration of " + fisrtResult + " seconds.\n";
List<String> secondQueryAsList = Arrays.asList(
"match",
" $customer isa person, has age > 40;",
" $company isa company, has name \"Telecom\";",
" (customer: $customer, provider: $company) isa contract;",
" (caller: $customer, callee: $anyone) isa call, has duration $duration;",
"get $duration; mean $duration;"
);
printToLog("Second Query:", String.join("\n", secondQueryAsList));
String secondQuery = String.join("", secondQueryAsList);
float secondResult = 0;
List<Numeric> secondAnswers = transaction.execute((GraqlGet.Aggregate) parse(secondQuery)).get();
if (secondAnswers.size() > 0) {
secondResult = secondAnswers.get(0).number().floatValue();
result.add(secondResult);
}
output += "Customers aged over 40 have made calls with average duration of " + secondResult + " seconds.\n";
printToLog("Result: ", output);
return (T) result;
}
});
// TO ADD A NEW QUERY EXAMPLE:
// queryExamples.add(new QueryExample("question goes here") {
// @Override
// void executeQuery(Grakn.Transaction tx) {
// printToLog("Question: ", this.question);
//
// // queries are written as a list for better readability
// List<String> queryAsList = Arrays.asList(
// "each line;",
// " as an element;",
// "ends with semicolon"
// );
//
// // join the query list elements with a new line before printing
// printToLog("Query:", String.join("\n", queryAsList));
// // join the query list elements to obtain the quer as a string to be executed
// String query = String.join("", queryAsList);
//
// List<String> result = new ArrayList<>();
// tx.graql().parse(query).execute().forEach(answer -> {
// // retrieve answers
// });
// printToLog("Result: ", String.join(", ", result));
// }
// });
return queryExamples;
}
public static List<QueryExample> getTestSubjects() {
return initialiseQueryExamples();
}
static void printToLog(String title, String content) {
System.out.println(title);
System.out.println();
System.out.println(content);
System.out.println();
}
}