SKIP
enables the return of only subsets of the total result.
By using SKIP
, the result set will get trimmed from the top.
Please note that no guarantees are made on the order of the result unless the query specifies the ORDER BY
clause.
To return a subset of the result, starting from the fourth result, use the following syntax:
Query.
MATCH n RETURN n ORDER BY n.name SKIP 3
The first three nodes are skipped, and only the last two are returned in the result.
Copyright © 2013 Neo Technology