Neo4J で、最初のノードに接続するすべてのノードを特定の数のパスで表示する Cypher クエリを作成するにはどうすればよいですか?
質問する
454 次
2 に答える
1
パスの数またはホップの数?
start n=node(x)
match path = n-[:TYPE*..3]->end // number of hops *..3 is up to 3 hops
return path
limit 10 // number of paths
于 2012-12-05T02:03:37.707 に答える
0
多分彼は探していると思います:
start n=node(x)
match path = n-[*]->end // maybe specify a max length and type?
with count(path) as cnt, end // group by end node, get count of paths
where cnt = <numpaths> // replace <numpaths> with the number of paths you want to match
return end
于 2012-12-05T02:19:15.487 に答える