Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere
-
- All Superinterfaces:
ExposesCall<StatementBuilder.OngoingInQueryCallWithoutArguments>,ExposesCreate,ExposesLoadCSV,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 multipart 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 @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWherewhere(@NotNull Condition condition)Adds a where clause to this match.default @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWherewhere(@NotNull 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, create
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesLoadCSV
loadCSV, loadCSV
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesMatch
match, match, match, optionalMatch, optionalMatch
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesMerge
merge
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesReturning
returning, returning, returning, returning, returningDistinct, returningDistinct, returningDistinct, returningDistinct, returningRaw
-
Methods inherited from interface org.neo4j.cypherdsl.core.ExposesSubqueryCall
call, call, 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, delete, detachDelete, 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, orderBy
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSet
mutate, mutate, set, set, set
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSetAndRemove
remove, remove, remove, remove, set, 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, with, with, with, with, withDistinct, withDistinct, withDistinct, withDistinct, withDistinct, withDistinct, withDistinct
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.OrderableOngoingReadingAndWith
getIdentifiableExpressions
-
-
-
-
Method Detail
-
where
@NotNull @CheckReturnValue @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWhere where(@NotNull @NotNull 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
@NotNull @CheckReturnValue default @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWhere where(@NotNull @NotNull 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
-
-