-
Notifications
You must be signed in to change notification settings - Fork 1
/
Example.java
36 lines (26 loc) · 1.15 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
// 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 (s:Stream{name:$streamer})<-[:VIP|:MODERATOR]-(user)\n" +
"RETURN user.name as moderator_or_vip LIMIT 20";
var result = session.readTransaction(
tx -> tx.run(cypherQuery,
parameters("streamer","ludwig"))
.list());
for (Record record : result) {
System.out.println(record.get("moderator_or_vip").asString());
}
}
driver.close();
}
}