跑了这段代码
String DB_PATH = "path/to/data/graph.db"
GraphDatabaseService graphDb = new EmbeddedGraphDatabase(DB_PATH)
for(Node _node: GlobalGraphOperations.at(graphDb).getAllNodesWithLabel(DynamicLabel.label('Label_Name')))
{
//Do Stuff
}
但是,这应该什么都不返回(那里还没有标签)。此外,它返回的不是节点,而是具有数据库中不存在的 ID 的 NodeProxies。此查询在新的 Neo4j 2.0 M3 数据库上运行。有什么想法吗?谢谢!