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 には単純なクエリ用の LIMIT および SKIP 関数があります。/api/cursor を使用してどのように実装しますか
FOR product in products LIMIT 2 return product
理想的には次のようなもの
FOR product in products LIMIT 20 SKIP 10 return product
または、これ/_api/simple/allは呼び出しの使用のみをサポートします
/_api/simple/all
LIMIT 句には、ページネーションをスキップして実装するために使用できるオフセット count があります。
LIMIT @offset, @count FOR product in products LIMIT 2, 10 return product