Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- db.collection.aggregate([
- {
- $unwind: "$items"
- },
- {
- $match: {
- "items.shape": "circle"
- }
- },
- {
- $project: {
- "_id": 0,
- "color": "$items.color",
- "shape": "$items.shape"
- }
- }
- ])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement