Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. db.getCollection('consos').aggregate([
  2. {
  3. "$project": {
  4. "yearMonthDay": { "$dateToString": { "format": "%Y-%m-%d", "date": "$date" } },
  5. "time": { "$dateToString": { "format": "%H:%M:%S:%L", "date": "$date" } },
  6. "weekday": "$weekday"
  7. }
  8. },
  9. {
  10. "$group" : {
  11. "_id" : {
  12. "date" : "$yearMonthDay",
  13. "weekday" : "$weekday"
  14. },
  15. "count" : { "$sum" : 1 },
  16. }
  17. },
  18. // sort from most recent to oldest
  19. {
  20. "$sort": { "_id.date": -1 }
  21. },
  22. // select first ten results
  23. {
  24. "$limit": 10
  25. },
  26. // reverse order of ten results
  27. {
  28. "$sort": { "_id.date": 1 }
  29. },
  30. {
  31. "$project" : {
  32. "_id" : 0,
  33. "date" : "$_id.date",
  34. "weekday" : "$_id.weekday",
  35. "count" : 1
  36. }
  37. }
  38. ])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement