I need to pull a subdocument in MongoTemplate but cannot figure out how to do it.
My saved document is:
{
"_id" : "FooUser",
"_class" : "com.domain.User",
"tests" : [
{
"variant" : {
"_id" : "C",
"probability" : "0.5"
},
"experiment" : {
"$ref" : "experiment",
"$id" : "MyExperiment2"
}
},
{
"variant" : {
"_id" : "B",
"probability" : "0.5"
},
"experiment" : {
"$ref" : "experiment",
"$id" : "MyExperiment1"
}
}
]
}
I need to remove only the test that has MyExperiment1. Executing the following command works:
db.user.update( {}, {$pull: { "tests":{"experiment.$id":"MyExperiment1"}}}, {multi: true} )
How should I write this using Spring MongoTemplate?
I have tried the following, but does not work:
this.mongoTemplate.updateMulti(new Query(), new Update().pull("tests", "{\"experiment.$id\":\"MyExperiment1\"}"), "user");
Thanks.
It seems this works:
this.mongoTemplate.updateMulti(new Query(),
new Update().pull("tests", Query.query(Criteria.where("experiment.$id").is("MyExperiment1"))), USERS_COLLECTION_NAME);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With