Dաıtry

Results 22 comments of Dաıtry

Hello @pushkarnagpal, Are you sure you've provided a valid Cypher query? It does not compile in Cypher for Gremlin and Neo4j gives error about multiple `WHERE` cases. ![image](https://user-images.githubusercontent.com/32328713/63749697-a6d29d80-c8b4-11e9-862a-16cac2271f4c.png)

Variable length path in loops is a complex case, which is tricky to implement in Gremlin to fully cover all the edge cases. I've invested a lot of time trying...

`.neq(' cypher.null')` is guard to handle ` cypher.null` which represents [null in Cypher for Gremlin](https://github.com/opencypher/cypher-for-gremlin/tree/master/tinkerpop/cypher-gremlin-extensions#null-handling). We may call "root cause" the following snippet: ```groovy .repeat(__ .inE('ownership') .as('trail') .aggregate(' cypher.path.edge.p') .outV()...

Hello @hagen666, it is not implemented. However, it could be implemented by providing [cypher-gremlin-neo4j-driver](https://github.com/opencypher/cypher-for-gremlin/tree/master/tinkerpop/cypher-gremlin-neo4j-driver) to [neo4j-jdbc](https://github.com/neo4j-contrib/neo4j-jdbc) (probably will require minimal changes from both modules). Currently, it is not planned for...

@sbespalov @steve-todorov This change requires either implementing optimization strategy or introduce an inlining option. Both of these changes require significant efforts in development and testing. Currently, all my attention is...

Hello @nordllar , If I understand your question correctly, you need to write a query that returns nodes and relationships. For example `MATCH (n) RETURN n` returns only nodes. To...

Hello @yuzhebj, this behavior is related to parameter handling. To avoid `NullPointerException` in case parameter has `null` value, parameter is wrapped into null guard `.choose(constant(archId), constant(archId), constant(' cypher.null'))`. Thats why...

> But I still wonder whether there is some static variable or parameter can replace the 'cypher.null' in gremlin? Not at the moment. If you will use Java `null`, the...

@yuzhebj can you show Cypher query that translates with `cypherContainerIndex()` and produces this error?

> version of gremlin translation library is 0.9.13, because the latest version 1.0.2 has some feature not supported in JanusGraph) Just to note that JanusGraph `0.4.0`, is compatible with `1.0.0`...