Advertisement
lasha_kitia

$lookup with "pipeline" keyword - no result

Apr 9th, 2020
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db.customers.aggregate([
  2.     {"$match": {"_id": "CUSTOMER-8165f7af-69b4-402d-ae68-b72b86682fb9"}},
  3.     {
  4.         "$lookup": {
  5.             "from": "licenses",
  6.             "let": {"customerId": "$_id"},
  7.             "pipeline": [
  8.                 {"$match": {"customerId": "$$customerId"}},
  9.                 {"$sort": {"createdAt": 1}},
  10.             ],
  11.             "as": "licenses",
  12.         }
  13.     },
  14. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement