How to eliminate all paths that pass through particular document or vertex while during Graph Traversal in ArangoDB
问题 I am trying to do a graph traversal here I created two collections in ArangoDB, a document collection "Node" and an edge collection "Path" . All my nodes have a name attribute (labels) and are connected by edges (lines) as shown in above illustration. I tried below query to find paths that end with an end or error node: FOR v, e, p IN 1..10 OUTBOUND 'Node/start_0' Path OPTIONS { bfs: true} FILTER (v.name == "end" OR v.name == "error") RETURN CONCAT_SEPARATOR(' - ', p.vertices[*].name) The