User.updateOne(
{id: 1},
[{
$set: {
'stats.price': {
$cond: {
if: {$gt: [r.price, '$stats.price']},
then: r.price,
else: '$stats.price'
}
},
'stats.one': {
$cond: {
if: {$gt: [r.price, '$stats.price']},
then: r.one,
else: '$stats.one'
}
},
'stats.openDate': {
$cond: {
if: {$gt: [r.price, '$stats.price']},
then: new Date(),
else: '$stats.openDate'
}
}
}
}], (err, data) => console.log(data)
)
img {
width: 100vw;
height: 100vh;
}