Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere
- All Superinterfaces:
ExposesCall<StatementBuilder.OngoingInQueryCallWithoutArguments>,ExposesCreate,ExposesLoadCSV,ExposesMatch,ExposesMerge,ExposesReturning,ExposesSubqueryCall,ExposesUnwind,ExposesWith,StatementBuilder.ExposesDelete,StatementBuilder.ExposesLimit,StatementBuilder.ExposesOrderBy,StatementBuilder.ExposesSet,StatementBuilder.ExposesSetAndRemove,StatementBuilder.ExposesSkip,StatementBuilder.ExposesUpdatingClause,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>Nested classes/interfaces inherited from interface org.neo4j.cypherdsl.core.ExposesSubqueryCall
ExposesSubqueryCall.BuildableSubquery -
Method Summary
Modifier and TypeMethodDescriptionAdds 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
callMethods inherited from interface org.neo4j.cypherdsl.core.ExposesCreate
create, createMethods inherited from interface org.neo4j.cypherdsl.core.ExposesLoadCSV
loadCSV, loadCSVMethods inherited from interface org.neo4j.cypherdsl.core.ExposesMatch
match, match, match, optionalMatch, optionalMatchMethods inherited from interface org.neo4j.cypherdsl.core.ExposesMerge
mergeMethods inherited from interface org.neo4j.cypherdsl.core.ExposesReturning
returning, returning, returning, returning, returningDistinct, returningDistinct, returningDistinct, returningDistinct, returningRawMethods inherited from interface org.neo4j.cypherdsl.core.ExposesSubqueryCall
call, call, call, callInTransactions, callInTransactions, callInTransactions, callInTransactions, callInTransactions, callInTransactionsMethods inherited from interface org.neo4j.cypherdsl.core.ExposesUnwind
unwind, unwind, unwindMethods inherited from interface org.neo4j.cypherdsl.core.ExposesWith
with, with, with, withDistinct, withDistinct, withDistinctMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesDelete
delete, delete, delete, delete, detachDelete, detachDelete, detachDelete, detachDeleteMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesLimit
limit, limitMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesOrderBy
orderBy, orderBy, orderByMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSet
mutate, mutate, set, set, setMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSetAndRemove
remove, remove, remove, remove, set, setMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSkip
skip, skipMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.OrderableOngoingReadingAndWith
getIdentifiableExpressions
-
Method Details
-
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
-