I am using Titan Graph Database
. Say if i have a vertex V
with id VID
and there 10K vertices attached to it v1 with id v1id, v2 with id v2id...................v10000 with id v10000id.
Now i want pagination in getting neighbour vertices i.e 10 vertex detail per call.
It should support next
and previous
result. I saw limit()
but it just limit the number of returned result. I saw THIS SO and seems close to what i need, but is there some range kind of thing in Titan
where i can pass the start vertex id and the number of result i want??