Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumMongoDB$facet multi-pipelineSingle-choice MCQ

What does this `$facet` aggregation return for the `meta` and `data` outputs?

db.products.aggregate([ { $match: { inStock: true } }, { $facet: { meta: [ { $count: "total" } ], data: [ { $sort: { price: 1 } }, { $limit: 5 } ] } } ]);