I have latest docker image of ArangoDB. I have two collections in my DB test: edges and nodes, defining two-loops graph
1 → 2 → 3 → 4 → 5 → 6 → 1
1 → 11 → 12 → 1
Simple query
FOR item IN 1..100 INBOUND "nodes/1" OUTBOUND edges
RETURN item
Returns each node twice. I know
OPTION {uniqueVertices: "path"}
will solve this, but I thought default {uniqueEdges: "path"} should take
care of it itself.
--
You received this message because you are subscribed to the Google Groups
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/arangodb/b6a1d981-c0e9-4721-81d0-9f63f0d301a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
nodes-test.json
Description: application/json
edges-test.json
Description: application/json
