标签: java neo4j cypher
我尝试使用ExecuteEngine执行此查询:
ExecutionResult result = engine.execute("match n-[:MOVE_TO]->(x) where n.name = \"-999622097\" return x");
但是我收到了这个错误:
预计START或CREATE
有什么方法可以在JAVA中执行MATCH查询?没有使用START?
Tk的!