Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个系统,该系统需要在单个数据库中使用许多断开连接的图。我想到了一种方法,如果将节点与具有标签名称的每个组进行分组,则每组节点及其关系一起起作用作为一个独立的图,我可以调用标签名称并相应地查询以遍历每个图。这有没有可能。
示例:label_1(node_1-->node_2-->node_3),label_2((node_4-->node_5-->node_6)
这里 label_1 和 label_2 是 2 个标签,在同一个 neo4j 数据库中唯一地定义了两个图
标签的用例之一是对逻辑相关的节点进行分组。而且由于标签也被索引,您的用例似乎很合适。