Guest User

Untitled

a guest
Jan 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. {
  2. "_id" : ObjectId("5a5f814487c320156094c144"),
  3. "sender_id" : "123",
  4. "iso_number" : "ABC-DEF-123",
  5. "subject" : "Sample Memo",
  6. "content" : "This is a sample memorandum sent through postman.",
  7. "recipients" : [
  8. {
  9. "faculty_number" : 222,
  10. "_id" : ObjectId("5a5f814487c320156094c146"),
  11. "status" : "Sent"
  12. },
  13. {
  14. "faculty_number" : 111,
  15. "_id" : ObjectId("5a5f814487c320156094c145"),
  16. "status" : "Sent"
  17. }
  18. ],
  19. "memo_created" : ISODate("2018-01-17T17:00:52.104Z"),
  20. "__v" : 0
  21. }
  22.  
  23. db.getCollection('memos').update({"_id": id, "recipients.faculty_number": faculty_number, "recipients.$.memo_seen": {$exists: false}}, {$set: {"recipients.$.memo_seen": timestamp}})
Add Comment
Please, Sign In to add comment