Reputation: 1
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
Upvotes: 0
Views: 108
Reputation: 11397
FOR item IN collection
FILTER LENGTH(item.string) > 5
REMOVE item IN collection
Upvotes: 0