数据库管理系统图数据库本页总览图数据库 图库 Cypher查询示例 MATCH (n:PropertyKey) where id(n)=99 and n.cname='体裁' RETURN n order by id(n) LIMIT 25 模糊查询 contains MATCH (n:PropertyCollect)-[*0..]->(m:PropertyKey) where m.cname contains('姓') return n,m 查询多级子节点 MATCH (n)-[r*0..3]->(m) where id(n)=0 return n,r,m