Hi, I just wanted to say that this project is awesome 馃挴 , after doing some testing I can see how amazingly fast it is 鈿★笍 馃檶
I have a couple of questions about redis-graph module:
SKIP is not supported yet, only LIMIT, but is there way to paginate without using SKIP?Sidenote: I was hesitant to post in stackoverflow because there are only a few questions there, but if there is a better channel to ask these kind of things let me know, sorry for the inconvenient.
Glad you like the project!
SKIP clauses. As a temporary workaround, the easiest solution would be to include a unique identifier as a property in your nodes, then add a matching WHERE clause to make paginated queries:CREATE (a:person {name: 'Jim', id: 1})
...
MATCH (a:person) WHERE a.id > 5 RETURN a ORDER BY a.id LIMIT 5
Soon we'll introduce logic to make this a bit less roundabout!
redis-cli on the command line, or through most Redis clients. The largest benefit the graph clients offer currently is more effectively being able to print and manipulate result sets.question, but personally have no issue using GitHub as a forum for discussing the project. Thanks for your interest and your input!Awesome news 馃帀 馃挴
Most helpful comment
Glad you like the project!
SKIPclauses. As a temporary workaround, the easiest solution would be to include a unique identifier as a property in your nodes, then add a matchingWHEREclause to make paginated queries:Soon we'll introduce logic to make this a bit less roundabout!
I'd say use whatever is most natural to you and your use case, though! Queries can be passed to
redis-clion the command line, or through most Redis clients. The largest benefit the graph clients offer currently is more effectively being able to print and manipulate result sets.question, but personally have no issue using GitHub as a forum for discussing the project. Thanks for your interest and your input!