Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.TerminalExposesSkip
- All Known Subinterfaces:
StatementBuilder.OngoingMatchAndReturnWithOrder,StatementBuilder.OngoingReadingAndReturn,StatementBuilder.TerminalOngoingOrderDefinition
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.TerminalExposesSkip
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
@NotNull @CheckReturnValue @NotNull StatementBuilder.TerminalExposesLimit skip(Expression expression) Adds a skip clause.- Parameters:
expression- The expression to skip by- Returns:
- A step that only allows the limit of records to be specified.
- Since:
- 2021.0.0
-