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

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -