Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OngoingUnwind
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OngoingUnwind
Builder part for unwinding.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescription@NotNull StatementBuilder.OngoingReadingAdds anASpart that allows to define an alias for the iterable being unwound.default @NotNull StatementBuilder.OngoingReadingas(SymbolicName variable) Reuse an existing symbolic name.
-
Method Details
-
as
@NotNull @CheckReturnValue @NotNull StatementBuilder.OngoingReading as(@NotNull @NotNull String variable) Adds anASpart that allows to define an alias for the iterable being unwound.- Parameters:
variable- The alias name- Returns:
- A normal, ongoing read.
-
as
@NotNull @CheckReturnValue default @NotNull StatementBuilder.OngoingReading as(SymbolicName variable) Reuse an existing symbolic name.- Parameters:
variable- A symbolic name- Returns:
- A normal, ongoing read.
- Since:
- 2021.0.2
-