Arangodb has a LIMIT and SKIP function for simple queries, how would one implement using /api/cursor
FOR product in products
LIMIT 2
return product
Ideally something like
FOR product in products
LIMIT 20 SKIP 10
return product
Or it this only support using /_api/simple/all
calls
Think I figured it out, the LIMIT clause has an offset, count, that can be used to skip and implement pagination.
LIMIT @offset, @count
FOR product in products
LIMIT 2, 10
return product
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With