gpt4 book ai didi

neo4j - 密码关系基数

转载 作者:行者123 更新时间:2023-12-01 23:55:14 26 4
gpt4 key购买 nike

在 neo4j 1.9.7 中,有什么方法可以进行仅返回基数为 1 的传出关系的密码查询吗?

例如

N2 ----> N4 -----> N10
| |-------> N9
|
|------> N5 -----> N9
|
|------> N6 -----> N9

在这样的结构中,我想遍历节点并只返回只有一个传出关系的节点(例如示例中的 N5 和 N6)。

我可以通过使用 IteratorUtil 类的 Java API 来获取计数

Node process = db.getNodeById(2);

for(Relationship rel : process.getRelationships(Direction.OUTGOING))
{
Node appProcess = rel.getOtherNode(process);
if(IteratorUtil.count(appProcess.getRelationships(Direction.OUTGOING).iterator()) == 1)
{
System.out.println(appProcess.getId()+" is a vital process");
count++;
}
}

我想在 Cypher 中做同样的事情。

最佳答案

不确定这是否可行,我目前没有运行 1.9,但它在过去是这样工作的。

START n=node(2)
MATCH (n)-->(m)
WHERE length((m)-->()) = 1
RETURN m

关于neo4j - 密码关系基数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24144771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com