// 2. 复杂模式匹配 MATCH (follower:Person)-[:FOLLOWS*1..3]->(celebrity:Person) WHERE celebrity.name = 'Tom Cruise' RETURN follower.name, length(path) as distance
// 3. 聚合查询 MATCH (p:Person)-[:ACTED_IN]->(m:Movie) RETURN p.name, count(m) as movies ORDER BY movies DESC LIMIT 5
<pre class="mermaid">sequenceDiagram participant C as 客户端 participant T as 事务管理器 participant D as 数据存储 C->>T: 开始事务 T->>D: 加锁 T->>D: 执行操作 T->>D: 提交/回滚 T->>C: 返回结果</pre>
// 基于共同兴趣的用户推荐 MATCH (user:User {name: "Alice"})-[:INTERESTED_IN]->(tag:Tag) MATCH (tag)<-[:INTERESTED_IN]-(otherUser:User) WHERE user <> otherUser WITH otherUser, count(*) as commonInterests ORDER BY commonInterests DESC LIMIT 5 RETURN otherUser.name, commonInterests