One example of the use of node I see is the removal of certain nodes. For example, consider the following scenario:
> I have two types of nodes, say ANIMAL and BIRD > I have a reference node `animalsReference` linked to all ANIMAL nodes and > I have a reference node `birdsReference` linked to all BIRD nodes
Now, in the future, suppose that I want to delete all BIRD nodes. Here I can use "birdReference" to get all nodes of type BIRD and delete them all.
If graphDb.getReferenceNode() out of date, how can we complete this type of task (deleting some nodes)?
I also see that graphDb.getAllNodes() deprecated. So what is the way to retrieve all nodes in graphDB ?
source share