> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

# SKIP

> The optional skip clause allows a specified number of records to be omitted from the result set.

The optional skip clause allows a specified number of records to be omitted from the result set.

```sh theme={null}
SKIP <number of records to skip>
```

This can be useful when processing results in batches. A query that would examine the second 100-element batch of nodes with the label `Person`, for example, would be:

```sh theme={null}
GRAPH.QUERY DEMO_GRAPH "MATCH (p:Person) RETURN p ORDER BY p.name SKIP 100 LIMIT 100"
```

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="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.
  </Accordion>

  <Accordion title="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.
  </Accordion>

  <Accordion title="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`.
  </Accordion>
</AccordionGroup>
