Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OngoingUnwind
-
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OngoingUnwindBuilder part for unwinding.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull StatementBuilder.OngoingReadingas(@NotNull String variable)Adds anASpart that allows to define an alias for the iterable being unwound.default @NotNull StatementBuilder.OngoingReadingas(SymbolicName variable)Reuse an existing symbolic name.
-
-
-
Method Detail
-
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
-
-