Let say I have a collection node N and a edges collection E. Together , I created a graph G from N and E. In the document, Arango guarantee the consistency of graph G such as no dangling edges when nodes are deleted, etc. Does this consistency hold in situations such as:
- Used Foxx, delete 1 node (Thus making edges have 1 null in the _from and _to)
- Used Foxx, delete nodes using collection API (not using AQL)
- Used AQL, delete directly in nodes/edges collection without traversal
I asked this question due to the fact that my query does return some null value of nodes and I would like to understand more about this topic for inspection.