社内の全ユーザー数と男女の人数を知りたいです。私のクエリは次のとおりです。
 start n=node:company(name:"comp")
 match n<-[:Members_In]-x, n<-[:Members_In]-y  
 where x.Sex='Male' and y.Sex='Female' 
 return n.name as companyName, count(distinct x) as NumOfMale,
 count(distinct y) as NumOfFemale" );
私のクエリは正しいですがn<-[:Members_In]-y、match 句で使用すべきではないことはわかっています。  
男性の数、女性の数、およびユーザーの総数を取得するにはどうすればよいですか?