Skip to content

Commit

Permalink
Release 0.9.13
Browse files Browse the repository at this point in the history
Signed-off-by: Dwitry <[email protected]>
  • Loading branch information
dwitry committed Feb 28, 2019
1 parent 12ab009 commit 9f88158
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions tinkerpop/cypher-gremlin-console-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The plugin and its dependencies can be automatically downloaded and installed in

1. Install Gremlin Console Cypher plugin:
```
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.12
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.12] - restart the console to use [opencypher.gremlin]
gremlin> :install org.opencypher.gremlin cypher-gremlin-console-plugin 0.9.13
==>Loaded: [org.opencypher.gremlin, cypher-gremlin-console-plugin, 0.9.13] - restart the console to use [opencypher.gremlin]
```

1. Restart Gremlin Console
Expand Down Expand Up @@ -122,7 +122,7 @@ gremlin> :remote connect opencypher.gremlin conf/remote-objects.yaml translate c
### Combining Cypher and Gremlin
With [CypherTraversalSource](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/org/opencypher/gremlin/client/CypherTraversalSource.html)
With [CypherTraversalSource](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/org/opencypher/gremlin/client/CypherTraversalSource.html)
its possible to combine Cypher and Gremlin in single query. Traversal can start with `cypher` step that allows to run Cypher
query (which will be translated to Gremlin) then continue traversal using other Gremlin steps. Note that `cypher` step returns list of maps, corresponding to rows and named columns.
To continue traversal with other Gremlin steps, use [select step](http://tinkerpop.apache.org/docs/current/reference/#select-step):
Expand Down Expand Up @@ -155,7 +155,7 @@ gremlin> g.cypher('MATCH (p:person) RETURN p.name AS name', 'cosmosdb')
==>[name:peter]
```
Note that Cypher query may return null values, represented by [string constant](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/constant-values.html#org.opencypher.gremlin.translation.Tokens.NULL).
Note that Cypher query may return null values, represented by [string constant](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/constant-values.html#org.opencypher.gremlin.translation.Tokens.NULL).
## Troubleshooting
Expand Down
4 changes: 2 additions & 2 deletions tinkerpop/cypher-gremlin-neo4j-driver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-neo4j-driver</artifactId>
<version>0.9.12</version>
<version>0.9.13</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.12'
compile 'org.opencypher.gremlin:cypher-gremlin-neo4j-driver:0.9.13'
}
```

Expand Down
10 changes: 5 additions & 5 deletions tinkerpop/cypher-gremlin-server-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>cypher-gremlin-server-client</artifactId>
<version>0.9.12</version>
<version>0.9.13</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.12'
compile 'org.opencypher.gremlin:cypher-gremlin-server-client:0.9.13'
}
```

Expand Down Expand Up @@ -113,15 +113,15 @@ String cypher = "MATCH (p:person) WHERE p.age > 25 RETURN p.name";
List<Map<String, Object>> results = cypherGremlinClient.submit(cypher).all();
```

Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/org/opencypher/gremlin/client/package-summary.html) for more information.
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/org/opencypher/gremlin/client/package-summary.html) for more information.

## Neo4j driver-like API

If you want to use a Neo4j driver-like API, take a look at the [Cypher Gremlin Neo4j Driver](../cypher-gremlin-neo4j-driver).

## Cypher Traversal Source

With [CypherTraversalSource](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/org/opencypher/gremlin/client/CypherTraversalSource.html)
With [CypherTraversalSource](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/org/opencypher/gremlin/client/CypherTraversalSource.html)
its possible to combine Cypher and Gremlin in single query. Traversal can start with `cypher` step that allows to run Cypher
query (which will be translated to Gremlin) then continue traversal using other Gremlin steps. Note that `cypher` step returns list of maps, corresponding to rows and named columns.
To continue traversal with other Gremlin steps, use [select step](http://tinkerpop.apache.org/docs/current/reference/#select-step):
Expand Down Expand Up @@ -156,7 +156,7 @@ GraphTraversal<Map<String, Object>, String> traversal = g
.dedup();
```

Note that Cypher query may return null values, represented by [string constant](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/constant-values.html#org.opencypher.gremlin.translation.Tokens.NULL).
Note that Cypher query may return null values, represented by [string constant](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/constant-values.html#org.opencypher.gremlin.translation.Tokens.NULL).



Expand Down
6 changes: 3 additions & 3 deletions tinkerpop/cypher-gremlin-server-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ The plugin and its dependencies can be automatically downloaded and installed in
- Run `bin/gremlin-server.sh` with `install` switch and supply the Maven coordinates of the plugin:

```sh
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.12
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.12
bin/gremlin-server.sh install org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.13
Installing dependency org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.13
...
```
* For TinkerPop 3.2.x (including JanusGraph):
- Run `bin/gremlin-server.sh` with `-i` switch and supply the Maven coordinates of the plugin:
```sh
bin/gremlin-server.sh -i org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.12
bin/gremlin-server.sh -i org.opencypher.gremlin cypher-gremlin-server-plugin 0.9.13
...
```

Expand Down
6 changes: 3 additions & 3 deletions translation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ To add a dependency using Maven:
<dependency>
<groupId>org.opencypher.gremlin</groupId>
<artifactId>translation</artifactId>
<version>0.9.12</version>
<version>0.9.13</version>
</dependency>
```

To add a dependency using Gradle:

```
dependencies {
compile 'org.opencypher.gremlin:translation:0.9.12'
compile 'org.opencypher.gremlin:translation:0.9.13'
}
```

Expand Down Expand Up @@ -100,7 +100,7 @@ Translator.builder()
.build();
```

Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.12/java/org/opencypher/gremlin/translation/package-summary.html) for more information.
Consult the [Javadoc](https://opencypher.github.io/cypher-for-gremlin/api/0.9.13/java/org/opencypher/gremlin/translation/package-summary.html) for more information.

## Running Cypher

Expand Down

0 comments on commit 9f88158

Please sign in to comment.