简体   繁体   中英

Neo4j - get all nodes belonging to an index using Java API

Say that I have an index named "user". How do I get all the nodes belonging to that index using Neo4j-Java Api?

I tried the code below

val nodeIndex = getNodeIndex("article").get
val nodes = nodeIndex.getGraphDatabase().getAllNodes()

But, I got all the nodes present in the db. How do I solve this?

You should use "get" or "query" on the nodeIndex, like:

IndexHits<Node> allArticles = nodeIndex.query( "*:*" );
... do stuff ...
allArticles.close();

or

Node myArticle = nodeIndex.get( "name", "MyArticle" ).getSingle();

What you did above was to regardless of the index, get the graph database and return all nodes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM