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
Post a Comment