1

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は呼び出しの使用のみをサポートします

4

1 に答える 1

3

LIMIT 句には、ページネーションをスキップして実装するために使用できるオフセット count があります。

LIMIT @offset, @count

FOR product in products
    LIMIT 2, 10
return product
于 2015-08-18T13:44:04.460 に答える