The SKIP statement allows you to discard a specified number of records from the start of the intermediate result or output table. A non-negative integer must be specified in SKIP.
NOTE
OFFSETcan be used as a synonym toSKIP.
Syntax<skip statement> ::= "SKIP" <non-negative integer>

CREATE GRAPH myGraph { NODE Paper ({title string, score uint32, author string}), EDGE Cites ()-[{}]->() } PARTITION BY HASH(Crc32) SHARDS [1]
GQLMATCH (n:Paper) RETURN n.title SKIP 1
Result:
| n.title |
|---|
| Efficient Graph Search |
| Path Patterns |
GQLMATCH (n:Paper) ORDER BY n.score SKIP 1 MATCH p = (n)->() RETURN p
Result: p
