I have a document collection 'node' and an edge collection 'attribute'. I am trying to get all edges in 'attribute' collection from: 'node/582148' to: 'node/582016'.
The simplest AQL query I've been able to devise is the following:
FOR v, e, p IN OUTBOUND 'node/582148' `attribute`
FILTER e._to == 'node/582016'
RETURN p
Is there really no way to do this in one, like:
FOR v, e, p IN OUTBOUND 'node/582148' TO 'node/582016' `attribute` RETURN p
It's only possible to use the 'TO' keyword with SHORTEST_PATH. To clarify: I am only interested in direct paths (1 edge) between the nodes
thanks