如何在密码查询中获取具有组名的最大用户组?

时间:2012-12-05 09:38:35

标签: neo4j cypher

这是我的密码查询:

params.put("query", "name:*");
ExecutionResult result = engine.execute( "start n=node:groups({query}) 
match n<-[:Members_In]-x 
with n,count(distinct x) as numberOfUsers 
return  max(numberOfUsers)", params );

n是组名,x是每个组的用户。 如何获得具有名称的最大用户数的组? 感谢。

0 个答案:

没有答案