Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.ExposesSkip
- All Known Subinterfaces:
StatementBuilder.OngoingOrderDefinition,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.ExposesSkip
A step that exposes the
skip(Number) method.- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionAdds a skip clause, skipping the given number of records.skip(Expression expression) Adds a skip clause.
-
Method Details
-
skip
Adds a skip clause, skipping the given number of records.- Parameters:
number- how many records to skip. If this is null, then no records are skipped.- Returns:
- a step that only allows the limit of records to be specified.
-
skip
Adds a skip clause.- Parameters:
expression- how many records to skip. If this is null, then no records are skipped.- Returns:
- a step that only allows the limit of records to be specified.
- Since:
- 2021.0.0
-