У меня есть документы со структурой, подобной этой:
_id: 5d090529397f79d2fefc57fb,
result: 23232,
temperatures: {
temp_limits: {
min: 10,
max: 31,
},
temp_cities:
[
{
city: 'citie_1',
city_temp: [
{ temp: 17, date: 2018-12-18T10:35:07.000Z}, // I want this
{ temp: 21, date: 2018-12-17T11:35:05.000Z},
{ temp: 23, date: 2018-12-17T14:36:07.000Z},
],
locked: false
},
{
city: 'citie_2',
city_temp: [
{ temp: 15, date: 2018-12-18T14:15:07.000Z}, // and this
{ temp: 22, date: 2018-12-17T11:33:02.000Z}
],
locked: false
}
]
}
Я хочу максимум date
и его temp
на каждом city_temp
, но сохраняю ту же структуру. Примерно так:
_id: 5d090529397f79d2fefc57fb,
result: 23232,
temperatures: {
temp_limits: {
min: 10,
max: 31,
},
temp_cities:
[
{
city: 'citie_1',
city_temp: { temp: 17, date: 2018-12-18T10:35:07.000Z}
locked: false
},
{
city: 'citie_2',
city_temp: { temp: 15, date: 2018-12-18T14:15:07.000Z}
locked: false
}
]
}
Я пробовал это, но я получаю отдельные результаты или с другой структурой:
{$unwind: '$temperatures.temp_cities'},
{$unwind: '$temperatures.temp_cities.city_temp'},
{$sort: { '$temperatures.temp_cities.city_temp.date': -1 } },
{
$group: {
_id: {
_id: '$_id',
bookie: "$temperatures.temp_cities.city"
},
result: { $first: '$result' },
temperatures: {
$first: "$temperatures.temp_cities.city_temp"
}
}
}