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.
有没有办法从neo4j图形数据库中提取子图,基于我想存在于我的子图中的节点,所以子图将包括声明的节点及其相互关系?
我正在使用 neo4j java 嵌入数据库。
我搜索但没有找到基于节点的子图提取,所以我将非常感谢您的大力帮助。
下面返回从节点 0 开始的所有子节点及其关系
START n=node(0) MATCH n-[r*]->(x) RETURN x, r