gpt4 book ai didi

neo4j - 如何使用 Cypher 在 neo4j 上找到断开连接的节点?

转载 作者:行者123 更新时间:2023-12-05 00:01:54 25 4
gpt4 key购买 nike

我在玩neo4j并注意到所有的Cypher查询都需要在START中找到一个起点。条款。
我想知道如何使用 Cypher 找到所有断开连接的节点?

谢谢

最佳答案

如果您的所有节点都被索引(例如通过自动索引),您可以使用索引查询作为起点,然后找到那些没有传出关系的节点。

start n=node:node_auto_index("id:*")
match n-[r?]->m
where r is null
return n

现在我宁愿使用:
start n=node:node_auto_index("id:*")
where not (n-->m)
return n

关于neo4j - 如何使用 Cypher 在 neo4j 上找到断开连接的节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8669471/

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