File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed
cypher-gremlin-console-plugin
cypher-gremlin-neo4j-driver
cypher-gremlin-server-client
cypher-gremlin-server-plugin Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ The plugin and its dependencies can be automatically downloaded and installed in
2424
25251. Install Gremlin Console Cypher plugin:
2626 ```
27- gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.8
28- ==> Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.8 ] - restart the console to use [opencypher.gremlin]
27+ gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.9
28+ ==> Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.9 ] - restart the console to use [opencypher.gremlin]
2929 ```
3030
31311. Restart Gremlin Console
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ To add a dependency using Maven:
1919<dependency >
2020 <groupId >org.opencypher.gremlin</groupId >
2121 <artifactId >cypher-gremlin-neo4j-driver</artifactId >
22- <version >0.9.8 </version >
22+ <version >0.9.9 </version >
2323</dependency >
2424```
2525
2626To add a dependency using Gradle:
2727
2828```
2929dependencies {
30- compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.8 '
30+ compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.9 '
3131}
3232```
3333
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ To add a dependency using Maven:
1515<dependency >
1616 <groupId >org.opencypher.gremlin</groupId >
1717 <artifactId >cypher-gremlin-server-client</artifactId >
18- <version >0.9.8 </version >
18+ <version >0.9.9 </version >
1919</dependency >
2020```
2121
2222To add a dependency using Gradle:
2323
2424```
2525dependencies {
26- compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.8 '
26+ compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.9 '
2727}
2828```
2929
@@ -84,7 +84,7 @@ String cypher = "MATCH (p:person) WHERE p.age > 25 RETURN p.name";
8484List<Map<String , Object > > results = cypherGremlinClient. submit(cypher). all();
8585```
8686
87- Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.8 /java/org/opencypher/gremlin/client/package-summary.html ) for more information.
87+ Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.9 /java/org/opencypher/gremlin/client/package-summary.html ) for more information.
8888
8989## Neo4j driver-like API
9090
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ The plugin and its dependencies can be automatically downloaded and installed in
1717
1818Run ` bin/gremlin-server.sh ` with ` install ` switch and supply the Maven coordinates of the plugin:
1919``` sh
20- bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.8
21- Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.8
20+ bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.9
21+ Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.9
2222...
2323```
2424
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ To add a dependency using Maven:
1515<dependency >
1616 <groupId >org.opencypher.gremlin</groupId >
1717 <artifactId >translation</artifactId >
18- <version >0.9.8 </version >
18+ <version >0.9.9 </version >
1919</dependency >
2020```
2121
2222To add a dependency using Gradle:
2323
2424```
2525dependencies {
26- compile 'org.opencypher.gremlin:translation:0.9.8 '
26+ compile 'org.opencypher.gremlin:translation:0.9.9 '
2727}
2828```
2929
@@ -83,7 +83,7 @@ Translator.builder()
8383 .build();
8484```
8585
86- Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.8 /java/org/opencypher/gremlin/translation/package-summary.html ) for more information.
86+ Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.9 /java/org/opencypher/gremlin/translation/package-summary.html ) for more information.
8787
8888## Running Cypher
8989
You can’t perform that action at this time.
0 commit comments