Is it possible to link documents from different collections in ArangoDB as it is in OrientDB?
In OrientDB you can create a field of type LINK
and specify the type linked. That creates a relation between both documents.
Do I have to use edge collections to do this in ArangoDB?
I'm trying to define a main collection and a secondary collection with extra information to supplement the main one. I don't want to have all the data in the main collection as this is shared between other entities.
Thanks in advance.