Arangodb query to get node-link graph when there is limit on node number -


i have normal graph node-link due requirement, want query out limited number of node (20 example). then, limit 20, query links returned nodeid not in result. how can solve it?

current query:

for node

"for v in 0..100  " + "\"" + _id + "\"" + "  entityrelation  options {uniquevertices: " + "\"global\"" + "}  return v" 

for links

"for v in 0..100  " + "\"" + _id + "\"" + "  entityrelation  options {uniquevertices: " + "\"global\"" + "}  vv, c in inbound v entityrelation  return c" 


Comments

Popular posts from this blog

c++ - CPP, 'X' button listener -

shared memory - gstreamer shmsrc and shmsink with h264 data -

.net - Bulk insert via Dapper is slower than inserting rows one-by-one -