neo4j - How to paginate query results with cypher? -
is possible have cypher query paginated. instance, list of products, don't want display/retrieve/cache results can have lot of results.
i'm looking similar offset / limit in sql.
is cypher skip + limit + orderby option ? http://docs.neo4j.org/chunked/stable/query-skip.html
skip
, limit
combined indeed way go. using order by
inevitably makes cypher scan every node relevant query. same thing using where
clause. performance should not bad though.
Comments
Post a Comment