ArangoDB Index usage with edge collections
问题 Task: Fastest way to update many edges attributes. For performance reasons, I am ignore graph methods and work with collection directly for filtering. ArangoDB 2.8b3 Query [Offer - edge collection]: FOR O In Offer FILTER O._from == @from and O._to == @to and O.expired > DATE_TIMESTAMP(@newoffertime) UPDATE O WITH { expired: @newoffertime } IN Offer RETURN { _key: OLD._key, prices_hash: OLD.prices_hash } I have system index on _to, _from and range index on expired Query explain show 7 edge