Pour toutes les dates et heures liées à la requête, vous devez projeter ses valeurs à partir du champ de date - manuel ici
Le cadre d'agrégation est fourni avec de l'aide dans ce cas. Veuillez consulter la requête de base ci-dessous, qui a un agrégat de poids quotidien et hebdomadaire, afin que vous puissiez transformer cette requête pour d'autres périodes ou utiliser une requête par période :
db.timing.aggregate([{
$project : {
year : {
$year : "$date"
},
month : {
$month : "$date"
},
week : {
$week : "$date"
},
day : {
$dayOfWeek : "$date"
},
_id : 1,
weight : 1
}
}, {
$group : {
_id : {
year : "$year",
month : "$month",
week : "$week",
day : "$day"
},
totalWeightDaily : {
$sum : "$weight"
}
}
},
{
$group : {
_id : {
year : "$_id.year",
month : "$_id.month",
week : "$_id.week"
},
totalWeightWeekly : {
$sum : "$totalWeightDaily"
},
totalWeightDay : {
$push : {
totalWeightDay : "$totalWeightDaily",
dayOfWeek : "$_id.day"
}
}
}
}, {
$match : {
"_id.month" : 3
}
}
])
Voici des exemples de résultats pour le mois 3 pour mes données factices :
{
"_id" : {
"year" : 2016,
"month" : 3,
"week" : 10
},
"totalWeightWeekly" : 600,
"totalWeightDay" : [
{
"totalWeightDay" : 200,
"dayOfWeek" : 7
},
{
"totalWeightDay" : 400,
"dayOfWeek" : 6
}
]
}
{
"_id" : {
"year" : 2016,
"month" : 3,
"week" : 9
},
"totalWeightWeekly" : 1000,
"totalWeightDay" : [
{
"totalWeightDay" : 200,
"dayOfWeek" : 4
},
{
"totalWeightDay" : 600,
"dayOfWeek" : 3
},
{
"totalWeightDay" : 200,
"dayOfWeek" : 7
}
]
}
{
"_id" : {
"year" : 2016,
"month" : 3,
"week" : 12
},
"totalWeightWeekly" : 400,
"totalWeightDay" : [
{
"totalWeightDay" : 200,
"dayOfWeek" : 7
},
{
"totalWeightDay" : 200,
"dayOfWeek" : 2
}
]
}
{
"_id" : {
"year" : 2016,
"month" : 3,
"week" : 13
},
"totalWeightWeekly" : 200,
"totalWeightDay" : [
{
"totalWeightDay" : 200,
"dayOfWeek" : 3
}
]
}
et pour former la forme selon vos besoins, vous pouvez utiliser $project phase
{$project:{
_id:0,
"year" : "$_id.year", //this could be ommited but use $match to avoid sum of other years
"month" : "$_id.month", //this could be ommited but use $match to avoid sum of other months
"week" :"$_id.week",
totalWeightWeekly:1
}}
{
"totalWeightWeekly" : 600,
"year" : 2016,
"month" : 3,
"week" : 10
}
Tous les commentaires sont les bienvenus !