I have a list in arango collection like below
{
"id":"123"
"studentlist": [
"a",
"b",
"c"
]
}
Now based on some filter condition i have to replace particular element of list with the replacement set. In this example i want to replace b with [b1,b2], so that my collection should look like below
{
"id":"123"
"studentlist": [
"a",
"b1",
"b2",
"c"
]
}
how to do it using arango query.