Guest User

Untitled

a guest
Feb 15th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. friends: [
  2. {
  3. friendshipId: new ObjectID("123456789012345678901234"),
  4. lastMeeting: new Date("2019-02-07T20:35:55.256+00:00"),
  5. users: [
  6. {
  7. userId: new ObjectID("111111111111111111111111"),
  8. name: "Joe", // cached, read-only data to avoid multi-doc reads
  9. pictureUrl: "https://foo.com/joe.jpg",
  10. },
  11. {
  12. userId: new ObjectID("222222222222222222222222"),
  13. name: "Bill", // cached, read-only data to avoid multi-doc reads
  14. pictureUrl: "https://foo.com/bill.jpg",
  15. },
  16. ],
  17. }
  18. ]
Add Comment
Please, Sign In to add comment