I am very new to graph database. And I have started with Arango. For this project I am not sure about the queries that I will encounter in future. I don't want to create bottlenecks. So I wanted to create undirected or bidirectional edges everywhere.
However as only directed edges are supported my current understanding is that if some vertex is not reachable by a directed traversal
then I'll hit a bottleneck later. So whenever I am creating an edge a -> b
I am also creating b -> a
in the same edge collection.
Are my assumptions correct ? and Is the design decision acceptable ?