ggendel
ggendel

Reputation: 413

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:

Visual Representation of graph

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.

Upvotes: 0

Views: 248

Answers (1)

ggendel
ggendel

Reputation: 413

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.

Upvotes: 1

Related Questions