在 Neo4j embedded 中通过 ID 获取节点或关系 java

Get node or relationship by ID in Neo4j embedded java

我研究了如何根据 ID 轻松 get a Node by ID through cypher, yet the methods that are available for the Node interface do not appear to support a way to return a particular Node 对象。

如何使用 Neo4j 嵌入式 Java 库通过 ID return 特定节点?关于关系的同样问题...

您使用GraphDatabaseService.getNodeById and GraphDatabaseService.getRelationshipById.