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 StatementBuilder.OngoingReadingas(java.lang.String variable)Adds anASpart that allows to define an alias for the iterable being unwound.default StatementBuilder.OngoingReadingas(SymbolicName variable)Reuse an existing symbolic name.
-
-
-
Method Detail
-
as
StatementBuilder.OngoingReading as(java.lang.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
default StatementBuilder.OngoingReading as(SymbolicName variable)
Reuse an existing symbolic name.- Parameters:
variable- A symbolic name- Returns:
- A normal, ongoing read.
- Since:
- 2021.0.2
-
-