我正在使用 neo4j 1.8.2 并试图从图中检索所有节点,但我得到了 UnsupportedOperationException。
GraphDatabaseService db = GraphDatabaseFactory.databaseFor("http://localhost:7474/db/data/");
Iterable<Node> nodes = GlobalGraphOperations.at(db).getAllNodes();
我在 API 文档中找到了它,所以我无法理解,我做错了什么。