I want to delete some records from ArangoDB UI through the length condition.
For example : For a collection, I want to delete records that are having the length of a string object as 9
I want to delete some records from ArangoDB UI through the length condition.
For example : For a collection, I want to delete records that are having the length of a string object as 9
FOR item IN collection
FILTER LENGTH(item.string) > 5
REMOVE item IN collection