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/GraphDB 的新手,并创建了以下简单图表
node[1]user1 是 node[2]user2 和 node[3]user3 的“朋友”,上面的所有 3 个用户也有“post”节点连接到它们。
问题是如何获取 user1 的已连接朋友及其帖子?
以下查询仅返回 user1 的朋友和他的帖子...
START user1=node(2) MATCH user1-->all_node RETURN all_node
根据您选择的关系类型,这样的事情应该有效:
START user1=node(2) MATCH user1-[:FRIEND]->friend-[:POST]->post RETURN friend,post