1日を指定して、1日の開始と終了を計算します。これは、レコードのフィルタリングに使用されます。$match
start_of_day_ephocs=
end_of_day_ephocs=
集計クエリ
日付で並べ替え、病院IDでグループ化し、最初のドキュメントを選択します
db.Entry.aggregate(
[
{ "$match": { "date": {"$gte":start_of_day_ephocs,"$lte":end_of_day_ephocs }} },
{ "$sort": { "date": -1 } },
{
$group:
{
"_id": "$hospital._id",
"last_document": { "$first": "$$ROOT" }
}
}
]
)