通过“_id”更新集合中的查询

Update query on in the collection by "_id"

{
    "_id" : "tenant/data/EMAIL/ENGLISH",
    "tenantId" : "tenant2",
    "channelType" : "EMAIL",

    "template" : [ 
        {
            "_id" : "1",
            "templateName" : "abc",
            "effectiveStartDate" : ISODate("2017-01-01T12:00:00.000Z"),
            "modifiedDate" : ISODate("2017-06-02T22:08:55.782Z"),
            "active" : false
        }
    ]
}

我需要在"_id" : "tenant/data/EMAIL/ENGLISH"

的基础上更新"templateName" : "xyz"

我已经尝试过这些查询但没有成功

db.getCollection('data').updateOne({"_id": "tenant/data/EMAIL/ENGLISH"},
                     {$set : { "template.$.templateName" : "XYZ"}}); 

db.getCollection('data').updateOne({"_id": "tenant/data/EMAIL/ENGLISH"},

                     {$set : { "template.templateName" : "XYZ"}}); 

我们将不胜感激。

我已使用 positional-all 运算符更新数组。

这里是查询:

db.sample.update(
  {
    "_id": "tenant/data/EMAIL/ENGLISH"
  },
  {
    $set:{
      "template.$[].templateName":"XYZ"
    }
  }
)

输出

{
        "_id" : "tenant/data/EMAIL/ENGLISH",
        "tenantId" : "tenant2",
        "channelType" : "EMAIL",
        "template" : [
                {
                        "_id" : "1",
                        "templateName" : "XYZ",
                        "effectiveStartDate" : ISODate("2017-01-01T12:00:00Z"),
                        "modifiedDate" : ISODate("2017-06-02T22:08:55.782Z"),
                        "active" : false
                }
        ]
}

希望这会有所帮助:)