delete: Delete Nodes and Relationships

Description Usage Arguments Details Examples

View source: R/delete.R

Description

Delete node or relationship object(s) from the graph.

Usage

1

Arguments

...

A list of entities to delete.

Details

Nodes with incoming or outgoing relationships cannot be deleted. All incoming and outgoing relationships need to be deleted before the node can be deleted.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 
graph = startGraph("http://localhost:7474/db/data/")
clear(graph)

alice = createNode(graph, name = "Alice")
bob = createNode(graph, name = "Bob")

rel = createRel(alice, "WORKS_WITH", bob)

delete(rel)
delete(alice, bob)

## End(Not run)

RNeo4j documentation built on May 29, 2017, 4:01 p.m.

Related to delete in RNeo4j...