Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere
-
- All Superinterfaces:
ExposesCall<ProcedureCall.OngoingInQueryCallWithoutArguments>,ExposesCreate,ExposesMatch,ExposesMerge,ExposesReturning,ExposesSubqueryCall,ExposesUnwind,StatementBuilder.ExposesDelete,StatementBuilder.ExposesLimit,StatementBuilder.ExposesOrderBy,StatementBuilder.ExposesSet,StatementBuilder.ExposesSetAndRemove,StatementBuilder.ExposesSkip,StatementBuilder.ExposesUpdatingClause,StatementBuilder.ExposesWith,StatementBuilder.OngoingReading,StatementBuilder.OngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWith
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere extends StatementBuilder.OrderableOngoingReadingAndWith
A match that knows what to pipe to the next part of a multi part query.- Since:
- 1.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.neo4j.cypherdsl.core.ExposesCall
ExposesCall.AsFunction, ExposesCall.ExposesWithArgs<T>, ExposesCall.ExposesYield<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StatementBuilder.OrderableOngoingReadingAndWithWithWherewhere(Condition condition)Adds a where clause to this match.default StatementBuilder.OrderableOngoingReadingAndWithWithWherewhere(RelationshipPattern pathPattern)Adds a where clause based on a path pattern to this match.-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesCall
call
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesCreate
create
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesMatch
match, 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.ExposesSubqueryCall
call
-
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.ExposesLimit
limit, limit
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesOrderBy
orderBy, orderBy
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSet
mutate, mutate, set, set
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSetAndRemove
remove, remove, set
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSkip
skip, skip
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesWith
with, with, with, withDistinct, withDistinct, withDistinct
-
-
-
-
Method Detail
-
where
StatementBuilder.OrderableOngoingReadingAndWithWithWhere 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.OrderableOngoingReadingAndWithWithWhere 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
-
-