结合Cypher查询结果

时间:2012-08-16 21:13:11

标签: neo4j cypher

以下是我在Cypher的询问......

START n=node(127) 
MATCH(n)-[:friends]->(x) 
WITH n, collect(distinct x) as friends 
MATCH(n)-[:outer_only_friends]->(y) 
RETURN friends, collect(distinct y) as outer

我正在尝试将这些朋友添加到外部集合中,并在查询内部返回两者的集合。这样我就可以在查询中使用LIMIT和SKIP。

任何帮助都将不胜感激。

克里斯

1 个答案:

答案 0 :(得分:2)