Neo4j模糊查询:采用正则方式;
MATCH (n:House) where n.Name =~ '李.*' RETURN n
分页:
使用skip 及 limit
MATCH (n:House) where n.Name =~ '李.*' RETURN n skip 1 limit 1