配列フィールドで$unset演算子を使用して、クエリに一致する要素を削除することは可能ですか。たとえば、フィールド「ファイル」配列から35を削除しようとしています。
{
_id : 1,
files : [1,12,35,223]
}
// Ive tried this but it does not work
db.col.update({_id : 1}, {$unset : { files : 35}})
// or this does not work
db.col.update({_id : 1}, {$unset : { "files.35" : 1}})