Advertisement
Guest User

mongoquery

a guest
May 24th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db.collection.aggregate([
  2.   {
  3.     $unwind: "$items"
  4.   },
  5.   {
  6.     $match: {
  7.       "items.shape": "circle"
  8.     }
  9.   },
  10.   {
  11.     $project: {
  12.       "_id": 0,
  13.       "color": "$items.color",
  14.       "shape": "$items.shape"
  15.     }
  16.   }
  17. ])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement