我想要一个 Neo4j 图,其中所有内容都连接到参考节点(node0)。我的想法是将node0连接到“类类型”节点(rootNode),然后将某个类的所有节点连接到它。例如:
node0 --> unique RootUser --> many User
我正在使用 SpringNeo4j,所以我用@NodeEntity
. 我不知道如何在 Spring 中将 node0 连接到 RootUser。我试图在 RootUser 类中添加以下内容,但它不起作用(referenceNode 来自neo4jTemplate.getReferenceNode()
):
@RelatedTo(type = "partition", direction = Direction.INCOMING)
private Node referenceNode;
实现这种架构的最佳方式是什么?