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

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -