public class TranslationFacade extends Object
Basic usage example:
String cypher = "MATCH (p:Person) WHERE p.age > 25 RETURN p.name";
TranslationFacade cfog = new TranslationFacade();
String gremlin = cfog.toGremlinGroovy(cypher);
| Constructor and Description |
|---|
TranslationFacade() |
| Modifier and Type | Method and Description |
|---|---|
String |
toGremlinGroovy(String cypher)
Translates a Cypher query to Gremlin Groovy.
|
String |
toGremlinGroovy(String cypher,
Map<String,Object> parameters)
Translates a Cypher query to Gremlin Groovy.
|