nickzuck_007

Courses Count for Classes

May 13th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.22 KB | None | 0 0
  1. db.products.aggregate([
  2.     {$match : {"type": "Class"}},
  3.     {$unwind: "$courses"},
  4.     {$group: {
  5.             _id : "$courses.id",
  6.             "courses": {$push: "$courses"},
  7.             "count": {$sum : 1}
  8.     }}
  9. ])
Advertisement
Add Comment
Please, Sign In to add comment