我正在使用Java API,并且正在寻找带有Labels子集的节点。在cypher中,我使用以下查询:
Match(n) Where n:label1 OR n:label2 return n
那么,api中是否有任何方法呢?

谢谢

最佳答案

实际上,您可以运行嵌入式的Cypher查询,为什么要跳舞?

try (
    Transaction vTx = graphdb.beginTx();
    Result vResult = graphdb.execute("your cypher query here");
) {

    while (vResult.hasNext()) {
        Map<String, Object> vRecord = vResult.next();

        // process vRecord here
    }
    vResult.close();
    vTx.success();
}


希望这可以帮助。

问候,
汤姆

08-26 22:47