|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Relationship | |
---|---|
org.neo4j.graphdb | The graph database API used by Neo4j. |
org.neo4j.kernel | Implementation for embedding a Neo4j graph database in an application. |
org.neo4j.remote | A tool for introspecting a running Neo4j Graph Database instance from a different process. |
Uses of Relationship in org.neo4j.graphdb |
---|
Methods in org.neo4j.graphdb that return Relationship | |
---|---|
Relationship |
Node.createRelationshipTo(Node otherNode,
RelationshipType type)
Creates a relationship between this node and another node. |
Relationship |
GraphDatabaseService.getRelationshipById(long id)
Looks up a relationship by id. |
Relationship |
Node.getSingleRelationship(RelationshipType type,
Direction dir)
Returns the only relationship of a given type and direction that is attached to this node, or null . |
Relationship |
TraversalPosition.lastRelationshipTraversed()
Return the last relationship traversed. |
Methods in org.neo4j.graphdb that return types with arguments of type Relationship | |
---|---|
Iterable<Relationship> |
Node.getRelationships()
Returns all the relationships attached to this node. |
Iterable<Relationship> |
Node.getRelationships(Direction dir)
Returns all OUTGOING or
INCOMING relationships from this node. |
Iterable<Relationship> |
Node.getRelationships(RelationshipType... types)
Returns all the relationships of any of the types in types
that are attached to this node, regardless of direction. |
Iterable<Relationship> |
Node.getRelationships(RelationshipType type,
Direction dir)
Returns all relationships with the given type and direction that are attached to this node. |
Uses of Relationship in org.neo4j.kernel |
---|
Methods in org.neo4j.kernel that return Relationship | |
---|---|
Relationship |
EmbeddedReadOnlyGraphDatabase.getRelationshipById(long id)
|
Relationship |
EmbeddedGraphDatabase.getRelationshipById(long id)
|
Uses of Relationship in org.neo4j.remote |
---|
Methods in org.neo4j.remote that return Relationship | |
---|---|
Relationship |
RemoteGraphDatabase.getRelationshipById(long id)
|
Constructors in org.neo4j.remote with parameters of type Relationship | |
---|---|
RelationshipSpecification(Relationship relationship)
Create a new Relationship serialization. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |