Slackbot
08/30/2022, 7:41 AMGoran Cvijanovic
08/30/2022, 7:51 AMJingchun
08/30/2022, 8:10 AMSUBMIT JOB STATS
then SHOW STATS
if you only need to get the numbers of vertices and edges.
It's better to use LIMIT and pagination when retrieving large amount of data.Kasper
08/30/2022, 8:23 AMKasper
08/30/2022, 8:24 AMSKIP
and LIMIT
, correct? So say if I do Match ... SKIP 1000000 LIMIT 1000000
, doesn't it still retrieve 2M results and then just discards the first 1M? Then each subsequent page would take more time.Kasper
08/30/2022, 8:25 AMlookup
then not the right way to retrieve large numbers of results/vertex ids? From what I am aware you cannot attach a LIMIT
to a LOOKUP
query.Jingchun
08/30/2022, 8:26 AMLOOKUP ON Post yield id(vertex) | LIMIT 10, 10
Jingchun
08/30/2022, 8:28 AMJingchun
08/30/2022, 8:28 AMKasper
08/30/2022, 8:30 AMJingchun
08/30/2022, 8:38 AMJingchun
08/30/2022, 8:38 AMKasper
08/30/2022, 9:25 AMKasper
08/30/2022, 9:26 AMJingchun
08/30/2022, 9:26 AMJingchun
08/30/2022, 9:26 AMKasper
08/30/2022, 9:28 AMJingchun
08/30/2022, 9:28 AMGoran Cvijanovic
08/30/2022, 10:53 AMwey
08/31/2022, 12:19 AM