Code that I want to execute by MongoTemplate
:
{
$merge: {
into: 'someCollection',
on: "_id",
whenMatched: 'merge',
whenNotMatched: 'discard'
}
}
I did not find any suitable methods that allow me to describe $merge
stage, have doubts if Spring Data MongoDB
even supports this stage?