Hi there,
I would like to combine updateMany with aggregation features.
It seems to be available since version 4.2 according to StackOverflow:
I would like to do something very similar to the mentioned example:
db.collection.updateMany(
{},
[{ "$set": { "dateField": { "$toDate": "$dateField" } }]
);
Is it possible to write this with the ReactiveMongo API?
And if yes, since which specific version?
Thanks!
David