Description Usage Arguments See Also Examples
Drop the specified label(s) from a node.
| 1 | 
| node | A node object. | 
| ... | A character vector. | 
| all | A logical constant. If  | 
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run: 
graph = startGraph("http://localhost:7474/db/data/")
clear(graph)
alice = createNode(graph, "Person", name = "Alice")
bob = createNode(graph, c("Person", "Student"), name = "Bob")
dropLabel(alice, "Person")
dropLabel(bob, all = TRUE)
alice
bob
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.