9

我想将两个请求合并到一个查询中,但我不确定在单个密码查询中使用 2 个匹配语句时会发生什么。

假设我有一个朋友列表,我想查看我的朋友列表,他们的每个叔叔和兄弟姐妹都列在一个集合中。我可以有两个匹配语句来完成这项工作吗?例如

match friends-[:childOf]->parents-[:brother]->uncles
    , friends-[:childOf]->parents<-[:childOf]-siblings
return friends, collect(siblings), collect(uncles)

但是,如果我进行这样的查询,它总是不返回任何结果。

4

2 回答 2

10

由于您已经在第一个匹配班中选择了父母,您可以这样做 -

match friends-[:childOf]->parents-[:brother]->uncles
with friends, parents, uncles
match parents<-[:childOf]-siblings
return friends, collect(siblings), collect(uncles)
于 2013-05-09T15:47:39.937 回答
1

您可能希望将其中一些关系设为可选。例如,如果您找到兄弟姐妹但没有找到任何叔叔,则此查询将返回 null,因为它不满足两个匹配子句。如果您将结束关系设为可选,那么您不必完全满足这两个子句即可返回数据。所以:

match friends-[:childOf]->parents-[?:brother]->uncles
    , friends-[:childOf]->parents<-[?:childOf]-siblings
return friends, collect(siblings), collect(uncles)
于 2013-05-09T16:08:20.230 回答