I have a neo4j database and I use embedded mode. There are millions of nodes with multiple labels with each node. I can get all the nodes with single label like
GlobalGraphOperations gb = GlobalGraphOperations.at(graphDb);
ResourceIterable iterable = gb.getAllNodesWithLabel(DynamicLabel.label("LABEL1"));
This is fine. Now I want to do the same thing but with multiple labels. I want all the nodes which have "LABEL1" and "LABEL2" and "LABEL3" and so on.