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 } ]
} }
]);