I have a document in MongoDB in a collection with a document which has a field x
which value is an embedded document, created this way:
> db.c.insert({_id: 1, x: {$a: 2, b: 3}})
WriteResult({ "nInserted" : 1 })
> db.c.findOne({_id: 1})
{ "_id" : 1, "x" : { "$a" : 2, "b" : 3 } }
Note there is a field in the embedded document which starts with dollar ($a
) and a field that doesn't start with dollar (b
). I can update the field without dolar without problem:
> db.c.updateOne({_id: 1}, {$set: {"x.b": 30}})
{ "acknowledged" : true, "matchedCount" : 1, "modifiedCount" : 1 }
> db.c.findOne({_id: 1})
{ "_id" : 1, "x" : { "$a" : 2, "b" : 30 } }
However, if I try to update the field which starts with dollar in the same way, I get an error
> db.c.updateOne({_id: 1}, {$set: {"x.$a": 20}})
WriteError({
"index" : 0,
"code" : 52,
"errmsg" : "The dollar ($) prefixed field '$a' in 'x.$a' is not valid for storage.",
"op" : {
"q" : {
"_id" : 1
},
"u" : {
"$set" : {
"x.$a" : 20
}
},
"multi" : false,
"upsert" : false
}
})
Thus, how can I update a field starting with dollar in an embedded document?
I'm using MongoDB 4.4.1, in the case you need to know.
Thanks!
It is not possible to update field that start with
$
, see mongodb field name instructions,Restrictions on Field Names: