Home » Neo4j Skip Clause

Neo4j Skip Clause

by Online Tutorials Library

Neo4j SKIP Clause

In Neo4j, the SKIP clause is used to define how to skip a row or from which row to start including the rows in the output.

Example:

Let’s retrieve the record from the database skipping the first 3 nodes.

Output:

Neo4j skips clause 1


SKIP with Expression

Let’s take an example to use the SKIP clause with an expression.

Output:

Neo4j skips clause 2

This example skips the first record from the database and shows only remaining records.

Next TopicNeo4j With Clause

You may also like