怎么查询两个节点是否存在指定的三种关系? 两个节点可能存在5种关系
match (u:User{phone:’’) -[r] - (d:User) with d,u match (u1:User) -[r] -(d) where not u=u1 return count(distinct u) as cnt
这样只能查询存在两种关系吧
match (u:User{phone:’’) -[r] - (d:User) with d,u match (u1:User) -[r] -(d) where not u=u1 return count(distinct u) as cnt
这样只能查询存在两种关系吧