{
"_id" : ObjectId("559f85351554febf038b5c70"),
"company_name" : "Honey Crunch Popcorn Co",
"tech" : [
{
"tech_name" : "Magento",
"user" : "Rahul",
},
{
"tech_name" : "Volusion",
"user" : "Tina",
}
]
}
I want to add new attribute "verified:true" to "tech" array for "tech_name" : "Volusion" only so it will result like this,
{
"_id" : ObjectId("559f85351554febf038b5c70"),
"company_name" : "Honey Crunch Popcorn Co",
"tech" : [
{
"tech_name" : "Magento",
"user" : "Rahul"
},
{
"tech_name" : "Volusion",
"user" : "Tina",
"verified" : "true"
}
]
}
Please Help.