Guest User

Untitled

a guest
Feb 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. db.user.aggregate(
  2. {
  3. "$match": { 'phoneInfo.verifiedFlag': true}
  4. },
  5. {
  6. "$project": {
  7. yearMonthDayUTC: { $dateToString: { format: "%Y-%m-%d", date: "$createdOn" } }
  8.  
  9. }
  10. },
  11. {
  12. "$group": {
  13. "_id": {day: "$yearMonthDayUTC"},
  14. count: {
  15. "$sum": 1
  16. }
  17. }
  18. },
  19. {
  20. $sort: {
  21. "_id.day": 1,
  22. }
  23. })
Add Comment
Please, Sign In to add comment