Here is my document stored in couchbase
[
{
"items" : {
"A": {
"items" : {
"abcd" : {
"id" : 1234,
"name": "AAA"
},
"defg" : {
"id" : 1234,
"name" : "BBB"
},
"hijk" : {
"id" : 5678,
"name" : "CCC"
}
}
}
}
}
]
I want to update the name to ‘XXX’ for the nested objects which has the id’s 1234 . Please note that the keys “abcd”, “efgh” and “hijk” are dynamic. Thanks in advance for the help