Neo4j fuzzy query and paging query

Neo4j fuzzy query: use regular method;

MATCH (n:House) where n.Name =~ '李.*'  RETURN n

Pagination:

Use skip and limit

MATCH (n:House) where n.Name =~ '李.*'  RETURN n skip 1 limit 1

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324729245&siteId=291194637