Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {
  2. "_id" : "6b109972c9bd9d16a09b70b96686f691bfe2f9b6",
  3. "history" : [
  4. {
  5. "dtEntry" : 1428929906,
  6. "type" : "I",
  7. "refname" : "ref1"
  8. },
  9. {
  10. "dtEntry" : 1429082064,
  11. "type" : "U",
  12. "refname" : "ref1"
  13. }
  14. ],
  15. "c" : "SomeVal",
  16. "p" : "anotherVal"
  17. }
  18.  
  19. db.mydataset.aggregate({$project:{c:1,p:1,type:"$history.type",DtEntry:"$history.dtEntry",dater:{$dayOfMonth:new Date(DtEntry)}}})
  20.  
  21. $dayOfMonth:new Date(DtEntry)
  22. $dayOfMonth:new Date(history.DtEntry)
  23. $dayOfMonth:new Date("history.DtEntry")
  24. $dayOfMonth:new Date("$history.DtEntry")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement