通过java获取neo4j中具有相同索引值的所有节点?

时间:2013-11-11 18:35:39

标签: java neo4j

如何通过java获取neo4j中具有相同索引值的所有节点?

例如,我有节点的name属性的索引,以及两个都有name="alice"的节点。我想在java?

中基于索引进行搜索时得到两个节点

1 个答案:

答案 0 :(得分:1)

您是否检查了索引编制的文档? http://docs.neo4j.org/chunked/stable/indexing.html

IndexManager index = graphDb.index();
Index<Node> idx= index.forNodes( "nodes" ); //this is the name of your index
IndexHits<Node> hits = idx.get( "name", "alice" );