Uses of Interface
org.neo4j.cypherdsl.core.Relationship
-
Packages that use Relationship Package Description org.neo4j.cypherdsl.core Contains an internal DSL for creating Cypher. -
-
Uses of Relationship in org.neo4j.cypherdsl.core
Classes in org.neo4j.cypherdsl.core that implement Relationship Modifier and Type Class Description classRelationshipBase<S extends NodeBase<?>,E extends NodeBase<?>,SELF extends RelationshipBase<S,E,SELF>>This is the base class for all relationships.Methods in org.neo4j.cypherdsl.core that return Relationship Modifier and Type Method Description RelationshipForeignAdapter. asRelationship()Adapts a foreign expression into a Cypher-DSLRelationship, that allows to to address it further down in queries.RelationshipRelationship. inverse()Creates a new relationship, inverting the direction but keeping the semantics intact ((a) --> (b)becomes(b) <-- (a)).RelationshipRelationshipBase. inverse()RelationshipRelationship. length(java.lang.Integer minimum, java.lang.Integer maximum)Creates a new relationship with a new lengthRelationshipRelationshipBase. length(java.lang.Integer minimum, java.lang.Integer maximum)RelationshipRelationship. max(java.lang.Integer maximum)Creates a new relationship with a new maximum lengthRelationshipRelationshipBase. max(java.lang.Integer maximum)RelationshipRelationship. min(java.lang.Integer minimum)Creates a new relationship with a new minimum lengthRelationshipRelationshipBase. min(java.lang.Integer minimum)RelationshipRelationship. named(java.lang.String newSymbolicName)Creates a copy of this relationship with a new symbolic name.RelationshipRelationship. named(SymbolicName newSymbolicName)Creates a copy of this relationship with a new symbolic name.RelationshipRelationship. unbounded()Creates a new relationship with an unbound length minimum lengthRelationshipRelationshipBase. unbounded()Methods in org.neo4j.cypherdsl.core with parameters of type Relationship Modifier and Type Method Description NamedPathNamedPath.OngoingShortestPathDefinitionWithName. definedBy(Relationship relationship)Create a new named path based on a single relationship.static FunctionInvocationFunctions. endNode(Relationship relationship)Creates a function invocation forendNode{}.static FunctionInvocationFunctions. id(Relationship relationship)Creates a function invocation forid{}.static FunctionInvocationFunctions. keys(Relationship relationship)Creates a function invocation forkeys{}.static FunctionInvocationFunctions. properties(Relationship relationship)Creates a function invocation forproperties())on relationships.static FunctionInvocationFunctions. shortestPath(Relationship relationship)Creates a function invocation forshortestPath({}).static FunctionInvocationFunctions. startNode(Relationship relationship)Creates a function invocation forstartNode{}.static FunctionInvocationFunctions. type(Relationship relationship)Creates a function invocation fortype{}.
-