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.9
28- ==> Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.9 ] - restart the console to use [opencypher.gremlin]
27+ gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.10
28+ ==> Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.10 ] - 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.9 </version >
22+ <version >0.9.10 </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.9 '
30+ compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.10 '
3131}
3232```
3333
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ To add a dependency using Maven:
1414<dependency >
1515 <groupId >org.opencypher.gremlin</groupId >
1616 <artifactId >cypher-gremlin-server-client</artifactId >
17- <version >0.9.9 </version >
17+ <version >0.9.10 </version >
1818</dependency >
1919```
2020
2121To add a dependency using Gradle:
2222
2323```
2424dependencies {
25- compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.9 '
25+ compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.10 '
2626}
2727```
2828
@@ -113,7 +113,7 @@ String cypher = "MATCH (p:person) WHERE p.age > 25 RETURN p.name";
113113List<Map<String , Object > > results = cypherGremlinClient. submit(cypher). all();
114114```
115115
116- 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.
116+ Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.10 /java/org/opencypher/gremlin/client/package-summary.html ) for more information.
117117
118118## Neo4j driver-like API
119119
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.9
21- Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.9
20+ bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
21+ Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.10
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.9 </version >
18+ <version >0.9.10 </version >
1919</dependency >
2020```
2121
2222To add a dependency using Gradle:
2323
2424```
2525dependencies {
26- compile 'org.opencypher.gremlin:translation:0.9.9 '
26+ compile 'org.opencypher.gremlin:translation:0.9.10 '
2727}
2828```
2929
@@ -100,7 +100,7 @@ Translator.builder()
100100 .build();
101101```
102102
103- 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.
103+ Consult the [ Javadoc] ( https://opencypher.github.io/cypher-for-gremlin/api/0.9.10 /java/org/opencypher/gremlin/translation/package-summary.html ) for more information.
104104
105105## Running Cypher
106106
You can’t perform that action at this time.
0 commit comments