0

我在neo4j中有一个图,对于给定的节点N,我想找到从N开始不超过P步的路径中可到达的所有节点,以及该组节点之间的所有链接。似乎这可以通过 Cypher 或 Traversal 框架实现;一个比另一个更受欢迎吗?我正在使用嵌入式数据库从 Java 执行此操作,并且我需要对子图执行进一步的查询。我四处寻找,并没有找到任何确凿的答案。

4

1 回答 1

2

我认为 cypher 是获取所需数据、查询可变长度路径、一些收集和提炼的最简洁方法:

如果 n 是您的节点的内部 idN并且您的P是 5:

START begin = node(n)             // or e.g. index lookup
MATCH p = (begin)<-[r*..5]-(end)  // match all paths of length up to 5
WITH distinct nodes(p) as nodes   // collect the nodes contained in the paths
MATCH (x)<-[r]-(y)                // find all relationships between nodes
WHERE x in nodes and y in nodes   // which were found earlier
RETURN distinct x,r,y             // and deduplicate as you find all pairs twice

这可能不是最有效的方法,但至少http://console.neo4j.org/中的执行计划说明表明y in nodesMATCH (x)-[r]-(y).

我想不出一种方法来避免两次匹配关系,因此distinct在 return 语句中。

于 2013-06-05T21:43:07.703 回答