Package org.neo4j.cypherdsl.core
Interface ExposesCall.AsFunction
-
- All Known Subinterfaces:
ProcedureCall.OngoingStandaloneCallWithArguments
,ProcedureCall.OngoingStandaloneCallWithoutArguments
- Enclosing interface:
- ExposesCall<T>
public static interface ExposesCall.AsFunction
Interface to allow creating an expression instead of a statement from an ongoing definition. To make this generate valid Cypher the stored procedure in question must be a valid function.- Since:
- 2020.1.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Expression
asFunction()
-
-
-
Method Detail
-
asFunction
@NotNull @Contract(pure=true) @NotNull Expression asFunction()
- Returns:
- A function invocation that can be used as an expression, for example as a property or inside a condition.
-
-