如何更新mongodb中的多个子元素

时间:2017-06-21 23:06:46

标签: mongodb

以下是数据库“活动”中对象的示例:

Object{
   type{
      name : Leads
      category : Client Success
   }
}

我希望更改每个类型的活动 - > name =导致:

Object{
   type{
      name : Opportunity
      category : Client Success
   }
}

这是我尝试过的:

db.getCollection('activities').update(
// query 
{
    "type.name" : "Leads"
},

// update 
{
    "type.name" : "Opportunity Generated"
},

// options 
{
    "multi" : true, 
    "upsert" : false 
} );

感谢您的帮助!

0 个答案:

没有答案