简体   繁体   中英

FOR v,e,p graph traversal AQL doesn't return all of the possible vertices

My graph has a edge of kind pm_child that forms a tree structure. Below is a picture showing an example tree:

图形的视觉表示

When doing the following AQL command:

FOR v,e,p IN 1..50 OUTBOUND 'pmsite/482149696650' pm_child RETURN p

It returns only 14 of the 21 possible "project" kinds. This seems like a bug but I wanted to verify I didn't do something silly before I report it.

This question is a red-herring. Arangojs introduced a default LIMIT value which truncated the results. With some direction from ArangoDB support, I was able to construct a better way to pull out what I needed without the umpteen intermediate traversal results.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM