Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ArangoDB 中有一个文档。我需要收到以前的文件。我如何才能收到 Arango 收藏中的上一个文档?
我的方式是:
FOR d IN MyCollection FILTER TO_NUMBER(d._key) < 512989295537 SORT d._key DESC LIMIT 1 RETURN d._key
但是,我认为这不是最佳选择...