Person, for example, would be:
Frequently Asked Questions
What does SKIP do in a Cypher query?
What does SKIP do in a Cypher query?
SKIP omits a specified number of records from the beginning of the result set. It is typically used together with LIMIT for pagination.
Should I use ORDER BY with SKIP?
Should I use ORDER BY with SKIP?
Yes. Without ORDER BY, the order of results is non-deterministic, so SKIP may return different records on each execution. Always combine SKIP with ORDER BY for consistent pagination.
How do I paginate results in FalkorDB?
How do I paginate results in FalkorDB?
Use
ORDER BY with SKIP and LIMIT together. For example, to get page 3 with 100 items per page: ORDER BY n.name SKIP 200 LIMIT 100.