This is just a solution which I came up with in short time. So it's probably not the best one, but I hope you get the idea and may adapt it to your case.
TraversalDescription td = Traversal.description().depthFirst().evaluator(new Evaluator() {
@Override
public Evaluation evaluate(Path path) {
if (path.length() == 1) {
int count = 0;
Iterator<Relationship> it = path.endNode().getRelationships().iterator();
while (it.hasNext()) {
it.next();
count++;
}
if (count == 1) {
count = 0;
it = path.startNode().getRelationships().iterator();
while (it.hasNext()) {
it.next();
count++;
}
if (count == 1) {
return Evaluation.INCLUDE_AND_PRUNE;
} else {
return Evaluation.EXCLUDE_AND_PRUNE;
}
} else {
return Evaluation.EXCLUDE_AND_PRUNE;
}
}
return Evaluation.EXCLUDE_AND_CONTINUE;
}
});
Traverser traverser = td.traverse(**MYNODE**);
This traversal description should return all paths, which contain only 2 nodes. I haven't tested it, but the idea is: It checks if the start- and the endnode of a path (lenght 1) has more than one relationships. If so, it cannot be the end of a path, and is therefore not in a pair. Otherwise it will be returned by the traverser later on. For information on the traversals, check the neo4j documentation.
With your current database layout, you would have to execute the traverser for every node in your database. This is normally a bad way to do, because it does so much unnecessary iterations. If you only do this once, it may be a solution for the moment. If you want to integrate this functionality in your final application, I'd suggest adding a few relationships (connecting each cluster to the root node).
You could add a relationship from the root node (id=0) to each node in your database. From the root node, you then traverse with the traversal-description from above (just change if (path.length() == 1) to if (path.length() == 2) and remove the count-check on the startnode). You would then get all paths with a pair at once with one traversal. This is much faster. You could even remove the relationships afterwards. Basically you can design your relationships the way you want, you can always ignore specific ones in a query or traversal. But you need them sometimes, to get better performance and easier traversal descriptions.
Hope it gives you some ideas.