static FunctionInvocation |
Functions.collect(Named variable) |
Creates a function invocation for the collect() function.
|
static FunctionInvocation |
Functions.collectDistinct(Named variable) |
Creates a function invocation for the collect() function with DISTINCT added.
|
default StatementBuilder.OngoingUpdate |
StatementBuilder.ExposesDelete.delete(Named... variables) |
Renders a DELETE clause targeting the given variables.
|
default StatementBuilder.OngoingUpdate |
StatementBuilder.ExposesDelete.detachDelete(Named... variables) |
Renders a DETACH DELETE clause targeting the given variables.
|
default StatementBuilder.BuildableMatchAndUpdate |
StatementBuilder.ExposesSet.mutate(Named variable,
Expression properties) |
Creates a += operation.
|
default StatementBuilder.BuildableOngoingMergeAction |
StatementBuilder.OngoingMergeAction.mutate(Named variable,
Expression properties) |
Creates a += operation.
|
default StatementBuilder.OngoingReadingAndReturn |
ExposesReturning.returning(Named... variables) |
Creates the RETURN clause.
|
default ListComprehension |
ListComprehension.OngoingDefinitionWithoutReturn.returning(Named... variables) |
|
default PatternComprehension |
PatternComprehension.OngoingDefinitionWithoutReturn.returning(Named... variables) |
|
default StatementBuilder.OngoingReadingAndReturn |
ExposesReturning.returningDistinct(Named... variables) |
Creates a RETURN clause containing the DISTINCT keyword.
|
default StatementBuilder.BuildableMatchAndUpdate |
StatementBuilder.ExposesSet.set(Named variable,
Expression expression) |
Adds a SET clause to the statement, modifying the given named thing with an expression.
|
default StatementBuilder.BuildableOngoingMergeAction |
StatementBuilder.OngoingMergeAction.set(Named variable,
Expression expression) |
Adds a SET clause to the statement, modifying the given named thing with an expression.
|
static StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
Cypher.with(Named... variables) |
Starts a statement with a leading WITH.
|
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.ExposesWith.with(Named... variables) |
|
StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.with(Named... expressions) |
Starts a with clause by passing named expressions to it.
|
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere |
StatementBuilder.ExposesWith.withDistinct(Named... variables) |
|
default T |
ExposesCall.ExposesYield.yield(Named... yieldedItems) |
Adds the given items to the YIELD clause of the generated call.
|