Package org.neo4j.cypherdsl.core
Interface ExposesCall.ExposesYield<T>
-
- Type Parameters:
T- The type of the next step
- All Known Implementing Classes:
ProcedureCall.StandaloneCallBuilder
- Enclosing interface:
- ExposesCall<T>
public static interface ExposesCall.ExposesYield<T>Used to yield procedure result fields.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Tyield(java.lang.String... yieldedItems)Tyield(AliasedExpression... aliasedResultFields)Tyield(SymbolicName... resultFields)
-
-
-
Method Detail
-
yield
default T yield(java.lang.String... yieldedItems)
-
yield
T yield(SymbolicName... resultFields)
-
yield
T yield(AliasedExpression... aliasedResultFields)
-
-