Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.ExposesSetAndRemove
- All Superinterfaces:
StatementBuilder.ExposesSet,StatementBuilder.ExposesSetLabel<StatementBuilder.BuildableMatchAndUpdate>
- All Known Subinterfaces:
ExposesSubqueryCall.BuildableSubquery,StatementBuilder.BuildableMatchAndUpdate,StatementBuilder.BuildableOngoingMergeAction,StatementBuilder.ExposesUpdatingClause,StatementBuilder.OngoingMatchAndUpdate,StatementBuilder.OngoingMerge,StatementBuilder.OngoingReading,StatementBuilder.OngoingReadingAndWith,StatementBuilder.OngoingReadingAndWithWithSkip,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OngoingReadingWithoutWhere,StatementBuilder.OngoingReadingWithWhere,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere,StatementBuilder.VoidCall
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.ExposesSetAndRemove
extends StatementBuilder.ExposesSet, StatementBuilder.ExposesSetLabel<StatementBuilder.BuildableMatchAndUpdate>
A step that exposes the set clause.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionremove(Collection<Property> properties) CreatesSETclause for removing the enumerated properties.CreatesSETclause for removing the given labels from a node.remove(Node node, Collection<String> labels) CreatesSETclause for removing the given labels from a node.CreatesSETclause for removing the given labels from a node.CreatesSETclause for removing the enumerated properties.Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSet
mutate, mutate, set, set, setMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSetLabel
set, set, set
-
Method Details
-
remove
CreatesSETclause for removing the given labels from a node.- Parameters:
node- the node whose labels are to be changedlabels- the labels to be removed- Returns:
- a match with a REMOVE clause that can be build now
-
remove
@CheckReturnValue StatementBuilder.BuildableMatchAndUpdate remove(Node node, Collection<String> labels) CreatesSETclause for removing the given labels from a node.- Parameters:
node- the node whose labels are to be changedlabels- the labels to be removed- Returns:
- a match with a REMOVE clause that can be build now
- Since:
- 2021.2.2
-
remove
CreatesSETclause for removing the given labels from a node.- Parameters:
node- the node whose labels are to be changedlabels- the labels to be removed- Returns:
- a match with a REMOVE clause that can be build now
- Since:
- 2025.1.0
-
remove
CreatesSETclause for removing the enumerated properties.- Parameters:
properties- the properties to be removed- Returns:
- a match with a REMOVE clause that can be build now
-
remove
CreatesSETclause for removing the enumerated properties.- Parameters:
properties- the properties to be removed- Returns:
- a match with a REMOVE clause that can be build now
- Since:
- 2021.2.2
-