怎么实现每个user有多少个二度Friend
目标:实现每个user有多少个二度Friend,可以返回每个user的二度Friend个数,也可以把结果设置成user的一个属性 实现方式 Cypher (有错误): match(u:User)-[*1…2]-(u1:Friend) with count(u1) as friend_two set u.friend_two_cnt = friend_two return u 其他python、java是否有相关案例