0

我创建了新的数据集来解释我想要的结果。这是链接

或者您可以使用密码触发此命令。

create 
(_6  {UserName:"dhansukh", UserProfileID:'1000', EMailID:'f@xyz.com'}),
(_5  {UserName:"dhruv", UserProfileID:'516', EMailID:'e@xyz.com'}),
(_4  {UserName:"dharmistha", UserProfileID:'5262', EMailID:'d@xyz.com'}),
(_3  {UserName:"dinesh", UserProfileID:'995', EMailID:'c@xyz.com'}),
(_2  {UserName:"dharmesh", UserProfileID:'502', EMailID:'b@xyz.com'}),
(_1  {UserName:"manish", UserProfileID:'1', EMailID:'a@xyz.com'}),
_1-[:friends {ApprovalStatus: 1} ]->_2,
_1-[:friends {ApprovalStatus: 1} ]->_3,
_1-[:friends {ApprovalStatus: 2} ]->_5,
_2-[:friends {ApprovalStatus: 1} ]->_3,
_2-[:friends {ApprovalStatus: 1} ]->_5,
_3-[:friends {ApprovalStatus: 1} ]->_4

现在我正在尝试以下查询,但它没有给我我预期的结果。

START me=node:node_auto_index(UserProfileID = '1'), other=node(*) 
MATCH pMutualFriends=me-[r?:friends]-mf-[r1:friends]-other 
WHERE other.UserName =~ '(?i)dh.*' AND other.UserProfileID <> 1 
RETURN other.UserProfileID, other.UserName, r.ApprovalStatus, COUNT(pMutualFriends) AS mutualCount

在上面的结果集中,我得到了重复的记录,(由于 ApprovalStatus),如果我删除?从关系中,它只显示链接节点,但我希望所有节点都以“dh”开头。节点6也不见了,不知道为什么?在某些情况下,相互计数也显示错误。只有 ApprovalStatus = 1 的节点才应考虑在相互计数中。如登录节点(例如节点 1)和搜索节点都具有关系的属性 ApprovalStatus = 1。

编辑: 我的预期结果集:

UserProfileID  UserName     ApprovalStatus  MutualCount 
-------------  --------     --------------  ----------- 
502            dharmesh     1               2           (node 3 & 5 )
516            dhruv        2               1           (node 2)
5262           dharmistha   null            1           (node 3) 
1000           dhansukh     null            0               

编辑: 我正在更新图像以便清楚理解。

在此处输入图像描述

我在过去 20-25 天遇到这个问题,并且没有得到适当的解决方案,我不知道问题出在哪里。我已经在stackoverflow上多次发布过这个问题。这是链接,还有这个这个等等。

4

2 回答 2

1

正如我在评论中所说,尝试同时查询连接和断开连接的节点似乎不是一个好主意。

如果您只想要连接的节点,请尝试以下查询:

START me=node:node_auto_index(UserName = 'manish') 
MATCH me-[:friends]-mf-[:friends]-other, me-[r?]-other 
WHERE other.UserName! =~ '(?i)dh.*' 
RETURN DISTINCT ID(other), r.ApprovalStatus AS status, count(mf) AS mutual, ID(me) 
ORDER BY mutual DESC , status ASC

请注意,我必须在 match 子句中添加另一个模式,因为您的批准状态介于 (me) 和 (other) 之间,而不是介于 (me) 和 (mutual friend) 之间,这就是您所做的!

这将返回您预期答案的前 3 行并忽略 dhansukh。

于 2013-07-31T15:18:35.207 回答
0

那这个呢?http://console-test.neo4j.org/?id=8lloq1

START me=node:node_auto_index(UserProfileID = '1'), other=node(*) 
MATCH pMutualFriends=me-[r?:friends]-mf-[r1?:friends]-other 
WHERE other.UserName! =~ '(?i)dh.*' AND other.UserProfileID? <> 1 AND r.ApprovalStatus=1 
RETURN DISTINCT (other.UserProfileID?),ID(other),me.EMailID?, other.EMailID?, other.UserName?, r.ApprovalStatus, COUNT(pMutualFriends) AS mutualCount
于 2013-07-31T12:04:07.597 回答