跳到主要内容

图数据库

图库

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