-
Notifications
You must be signed in to change notification settings - Fork 2
/
Example.java
37 lines (27 loc) · 1.19 KB
/
Example.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
// Add your the driver dependency to your pom.xml build.gradle etc.
// Java Driver Dependency: http://search.maven.org/#artifactdetails|org.neo4j.driver|neo4j-java-driver|4.0.1|jar
// Reactive Streams http://search.maven.org/#artifactdetails|org.reactivestreams|reactive-streams|1.0.3|jar
// download jars into current directory
// java -cp "*" Example.java
import org.neo4j.driver.*;
import static org.neo4j.driver.Values.parameters;
public class Example {
public static void main(String...args) {
Driver driver = GraphDatabase.driver("neo4j://<HOST>:<BOLTPORT>",
AuthTokens.basic("<USERNAME>","<PASSWORD>"));
try (Session session = driver.session(SessionConfig.forDatabase("neo4j"))) {
String cypherQuery =
"MATCH (p:Person {healthstatus:$status})-[v:VISITS]->(pl:Place)\n" +
" WHERE p.confirmedtime < v.starttime\n" +
" RETURN distinct pl.name as place LIMIT 20";
var result = session.readTransaction(
tx -> tx.run(cypherQuery,
parameters("status","Sick"))
.list());
for (Record record : result) {
System.out.println(record.get("place").asString());
}
}
driver.close();
}
}