Dաıtry
Dաıtry
@yuzhebj can you clarify if any other [custom functions](https://github.com/opencypher/cypher-for-gremlin/tree/master/tinkerpop/cypher-gremlin-extensions) like `toInteger` or `toString` work?
Ok, still sounds very strange to me, need more details to find cause. Only thing I can suggest is that you post your Gremlin Server configuration yaml here, and I'll...
@yuzhebj could you try to add `org.opencypher.gremlin.server.jsr223.CypherPlugin: {}` to `scriptEngines.gremlin-groovy.plugins` in your `yaml` file?
Hello @mad, currently Cypher for Gremlin has limited support of multiple labels, and works differently depending on target, because multiple label feature is not part of [Gremlin](https://tinkerpop.apache.org/docs/current/reference/), so each implementation...
Multiple label feature is not supported in JanusGraph. Cypher for Gremlin API [enableMultipleLabels](https://opencypher.github.io/cypher-for-gremlin/api/0.9.11/java/org/opencypher/gremlin/translation/translator/Translator.FlavorBuilder.html#enableMultipleLabels--) enables limited support on implementations that support this feature (e.g. Neptune). *Note for others who might be...
Hello @taylor009 for us to reproduce this issue, could you please explain in more detail: > When running from a cypher file * Are you running query using gutter icon,...
Hello @GiancarloLelli, thank you for suggestion. Currently, it is not planned for implementation, but contributions are always welcome.
Hello @GiancarloLelli , Great to know! For high level overview see: * [Implementation](https://github.com/opencypher/cypher-for-gremlin#implementation) * [Development](https://github.com/opencypher/cypher-for-gremlin#development) * [How to contribute](https://github.com/opencypher/cypher-for-gremlin#how-to-contribute) I've also just created new page [How to implement new Cypher...
Translation adds null guards in a lot of places, to avoid [Gremlin steps failing](https://github.com/opencypher/cypher-for-gremlin/tree/master/tinkerpop/cypher-gremlin-extensions#null-handling) on `null` or ` cypher.null` (null placeholder), sometimes redundantly. [Removing useless null guards](https://github.com/opencypher/cypher-for-gremlin/blob/master/translation/src/main/scala/org/opencypher/gremlin/translation/ir/rewrite/RemoveUselessNullChecks.scala) could be improved,...
Hello @mad, we have looked into implementing Temporal Types. It is possible but requires a significant amount of custom logic and lots of efforts to implement. So it is currently...