Remove records in Arango DB UI with length condition

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

Answers (1)

Codebling
Codebling

Reputation: 11397

FOR item IN collection
  FILTER LENGTH(item.string) > 5
REMOVE item IN collection

Upvotes: 0

Related Questions