Guest User

Untitled

a guest
Oct 24th, 2018
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. {
  2. "mlVoters" : [
  3. {"email" : "a@b.com", "isApproved" : false}
  4. ],
  5. "egVoters" : [
  6. {"email" : "a@b.com", "isApproved" : false},
  7. {"email" : "c@d.com", "isApproved" : true}
  8. ]
  9. },{
  10. "mlVoters" : [
  11. {"email" : "a@b.com", "isApproved" : false},
  12. {"email" : "e@f.com", "isApproved" : true}
  13. ],
  14. "egVoters" : [
  15. {"email" : "e@f.com", "isApproved" : true}
  16. ]
  17. }
  18.  
  19. db.documents.aggregate([
  20. {$project: { mlVoters: 1 } },
  21. {$unwind: "$mlVoters" },
  22. {$group: { _id: "$mlVoters.email", mlCount: { $sum: 1 } }},
  23. {$project: { _id: 0, email: "$_id", mlCount: 1 } },
  24. {$sort: { mlCount: -1 } }
  25. ])
  26.  
  27. {"mlCount" : 2.0,"email" : "a@b.com"}
  28. {"mlCount" : 1.0,"email" : "e@f.com"}
  29.  
  30. {"egCount" : 1.0,"email" : "a@b.com"}
  31. {"egCount" : 1.0,"email" : "c@d.com"}
  32. {"egCount" : 1.0,"email" : "e@f.com"}
  33.  
  34. {"email" : "a@b.com", "mlCount" : 2, "egCount" : 1, "totalCount":3}
  35. {"email" : "e@f.com", "mlCount" : 1, "egCount" : 1, "totalCount":2}
  36. {"email" : "c@d.com", "mlCount" : 0, "egCount" : 1, "totalCount":1}
Add Comment
Please, Sign In to add comment