RNeo4j (version 1.6.4)

createRel: Relationships

Description

Create a relationship between two nodes with the given type and properties.

Usage

createRel(.fromNode, .relType, .toNode, ...)

Arguments

.fromNode
A node object.
.relType
A character string.
.toNode
A node object.
...
A named list. Relationship properties in the form key = value.

Value

A relationship object.

Examples

Run this code
## Not run: 
# graph = startGraph("http://localhost:7474/db/data/")
# clear(graph)
# 
# alice = createNode(graph, "Person", name = "Alice")
# bob = createNode(graph, "Person", name = "Bob")
# charles = createNode(graph, "Person", name = "Charles")
# 
# createRel(alice, "WORKS_WITH", bob)
# createRel(bob, "KNOWS", charles, since = 2000, through = "Work")
# 
# props = list(since = 2001, through = "School")
# createRel(alice, "KNOWS", charles, props)
# ## End(Not run)

Run the code above in your browser using DataCamp Workspace