I have document organized such way:
{
"email": "tyler_li@126.com",
"name": "tyler",
"address": {
"street": "Beijing Road",
"zip": 510000
},
"likes": [
"running",
{
"movie": "Star Wars"
}
]
}
I have problem in modifying the value of "movie". Could you help me, how to modify the value with AQL?
Thanks!