Come $week
può restituire un valore compreso tra 0
e 53
Presumo che ti aspetti 54
documenti come risultato con 0
o valori diversi da zero per documentCount
. Per raggiungere questo obiettivo dovresti raccogliere tutti i tuoi documenti in uno ($ gruppo
-ing da null
) e quindi generare l'output.
Per generare un intervallo di numeri puoi utilizzare $range operatore e quindi puoi generare l'output utilizzando $map . Per trasformare una serie di documenti in più documenti puoi utilizzare $ rilassati .
db.collectionName.aggregate([
//where query
{ "$match": { $and:[{CreatedOn:{$lte:ISODate("2018-07-14T13:59:08.266+05:30")}},{CreatedOn:{$gte:ISODate("2018-06-10T13:59:08.266+05:30")}}] } },
//distinct column
{
"$group": {
_id: {$week: '$CreatedOn'},
documentCount: {$sum: 1}
}
},
{
$group: {
_id: null,
docs: { $push: "$$ROOT" }
}
},
{
$project: {
docs: {
$map: {
input: { $range: [ {$week:ISODate("2018-06-10T13:59:08.266+05:30")}, {$week:ISODate("2018-07-14T13:59:08.266+05:30")}]},
as: "weekNumber",
in: {
$let: {
vars: { index: { $indexOfArray: [ "$docs._id", "$$weekNumber" ] } },
in: {
$cond: {
if: { $eq: [ "$$index", -1 ] },
then: { _id: "$$weekNumber", documentCount: 0 },
else: { $arrayElemAt: [ "$docs", "$$index" ] }
}
}
}
}
}
}
}
},
{
$unwind: "$docs"
},
{
$replaceRoot: {
newRoot: "$docs"
}
}
])
Utilizzo di $indexOfArray
per verificare se l'array di documenti correnti contiene il documento (-1 in caso contrario) e $arrayElemAt
per ottenere il documento esistente da docs
. Ultimo passaggio ($replaceRoot
) serve solo per eliminare un livello di annidamento (docs
). Uscite:
{ "_id" : 0, "documentCount" : 0 }
{ "_id" : 1, "documentCount" : 0 }
{ "_id" : 2, "documentCount" : 0 }
...
{ "_id" : 22, "documentCount" : 0 }
{ "_id" : 23, "documentCount" : 2 }
{ "_id" : 24, "documentCount" : 9 }
{ "_id" : 25, "documentCount" : 1 }
{ "_id" : 26, "documentCount" : 1 }
{ "_id" : 27, "documentCount" : 0 }
...
{ "_id" : 52, "documentCount" : 0 }
{ "_id" : 53, "documentCount" : 0 }
Puoi facilmente personalizzare i risultati restituiti modificando l'input di $map
palcoscenico. Ad esempio puoi passare un array di const come input: [21, 22, 23, 24]
anche.
EDIT:per ottenere le settimane tra le date specificate puoi usare $week
per la data di inizio e di fine per ottenere i numeri.