I would like to manipulate array entries in a document:
e.g. I have simple items in the following structure
{
"name": "MyName",
"tags": ["Tag1", "Tag2", "Tag3"]
}
Now I want to change the tag "Tag1" with "Tag11".
How is this accomplishable with AQL?
How would I delete one of the tags?
TIA