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