Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface ExposesCall.ExposesWithArgs<T>
- Type Parameters:
T- the type of the next step
- All Known Subinterfaces:
StatementBuilder.OngoingInQueryCallWithoutArguments,StatementBuilder.OngoingStandaloneCallWithoutArguments
- Enclosing interface:
- ExposesCall<T>
public static interface ExposesCall.ExposesWithArgs<T>
Used to provide arguments to procedure calls.
-
Method Summary
Modifier and TypeMethodDescriptionwithArgs(Expression... arguments) Adds the given arguments to the ongoing call and proceeds.
-
Method Details
-
withArgs
Adds the given arguments to the ongoing call and proceeds.- Parameters:
arguments- the list of new arguments, might be null or empty.- Returns:
- an ongoing standalone call on which yielded arguments might be configured.
-