I have a document organized like this:
{
"email": "tyler_li@126.com",
"name": "tyler",
"address": {
"street": "Beijing Road",
"zip": 510000
},
"likes": [
"running",
{
"movie": "Star Wars"
}
]
}
I have a problem with changing the value of "movie". Could you help me how to change a value using AQL?
Thank!
source
share