Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. "invoiceItems" : [
  2. {
  3. "$ref" : "JobsPostings",
  4. "$id" : ObjectId("5aad26b6f78a341ef831b4f7"),
  5. "price" : 15,
  6. "publishDate" : ISODate("2018-03-17T00:00:00.000Z"),
  7. "_id" : ObjectId("5aaf4133b72ed853c09d60db")
  8. },
  9. {
  10. "$ref" : "JobsPostings",
  11. "$id" : ObjectId("5aad27e4f78a341ef831b513"),
  12. "price" : 20,
  13. "publishDate" : ISODate("2018-03-17T00:00:00.000Z"),
  14. "_id" : ObjectId("5aaf4133b72ed853c09d60da")
  15. }
  16. ]
  17.  
  18. PostPaidInvoice.find({_id: { $in : [ObjectId("5aaf4133b72ed853c09d60d9")]}}).then(result => {
  19. console.log(JSON.stringify(result[0].invoiceItems));
  20. }).catch(err => {
  21. console.log(err);
  22. });
  23.  
  24. [{"_bsontype":"DBRef","namespace":"JobsPostings","oid":"5aad26b6f78a341ef831b4f7"},{"_bsontype":"DBRef","namespace":"JobsPostings","oid":"5aad27e4f78a341ef831b513"}]
Add Comment
Please, Sign In to add comment