Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OngoingReadingWithoutWhere
-
- All Superinterfaces:
ExposesCreate,ExposesMatch,ExposesMerge,ExposesReturning,ExposesUnwind,StatementBuilder.ExposesDelete,StatementBuilder.ExposesSet,StatementBuilder.ExposesSetAndRemove,StatementBuilder.ExposesUpdatingClause,StatementBuilder.ExposesWith,StatementBuilder.OngoingReading
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OngoingReadingWithoutWhere extends StatementBuilder.OngoingReading, ExposesMatch, ExposesCreate, ExposesMerge
A match that exposesreturningandwheremethods to add required information. While the where clause is optional, an returning clause needs to be specified before the statement can be build.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StatementBuilder.OngoingReadingWithWherewhere(Condition condition)Adds a where clause to this match.default StatementBuilder.OngoingReadingWithWherewhere(RelationshipPattern pathPattern)Adds a where clause based on a path pattern to this match.-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesCreate
create
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesMatch
match, optionalMatch
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesMerge
merge
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesReturning
returning, returning, returning, returningDistinct, returningDistinct, returningDistinct
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesUnwind
unwind, unwind, unwind
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesDelete
delete, delete, delete, detachDelete, detachDelete, detachDelete
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSet
set, set
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSetAndRemove
remove, remove, set
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesWith
with, with, with, withDistinct, withDistinct, withDistinct
-
-
-
-
Method Detail
-
where
StatementBuilder.OngoingReadingWithWhere where(Condition condition)
Adds a where clause to this match.- Parameters:
condition- The new condition, must not be null- Returns:
- A match restricted by a where clause with no return items yet.
-
where
default StatementBuilder.OngoingReadingWithWhere where(RelationshipPattern pathPattern)
Adds a where clause based on a path pattern to this match. See Using path patterns in WHERE.- Parameters:
pathPattern- The path pattern to add to the where clause. This path pattern must not be null and must not introduce new variables not available in the match.- Returns:
- A match restricted by a where clause with no return items yet.
- Since:
- 1.0.1
-
-