You can use SKIP in your Cypher query to trim 'k' results from the top. The order will not be guaranteed if you do not use ORDER BY clause.
Here is an example query:
MATCH (n:movies)
RETURN n.title
ORDER BY n.title
SKIP 5
The above query sorts the title in ascending order and skips the top 5 rows.