Per calcolare i totali e restituire un sottoinsieme, è necessario applicare il raggruppamento e saltare/limitare allo stesso set di dati. Per questo puoi utilizzare le sfaccettature
Ad esempio per mostrare la terza pagina, 10 documenti per pagina:
db.Order.aggregate([
{ '$match' : { "company_id" : ObjectId("54c0...") } },
{ '$sort' : { 'order_number' : -1 } },
{ '$facet' : {
metadata: [ { $count: "total" }, { $addFields: { page: NumberInt(3) } } ],
data: [ { $skip: 20 }, { $limit: 10 } ] // add projection here wish you re-shape the docs
} }
] )
Restituirà un unico documento con 2 campi:
{
"metadata" : [
{
"total" : 300,
"page" : 3
}
],
"data" : [
{
... original document ...
},
{
... another document ...
},
{
... etc up to 10 docs ...
}
]
}