Reputation: 1
I have a collection in this format:
[
{
'name': 'test',
'features': ['features/id', 'features/id2'...]
}
]
I want to create a dynamic edge collection which connects between documents that has the same features.
For example, if I have this collection:
[
{
'name': 'test',
'features': ['features/id', 'features/id2']
},
{
'name': 'test2',
'features': ['features/id2']
},
{
'name': 'test3',
'features': ['features/id']
},
]
The edge collection will automatically create these connections: test <-> test2; test <-> test3
Upvotes: 0
Views: 250
Reputation: 11915
You cannot create collections with AQL. What you can do though is to
I don't think that this is what you are asking for however (see comment).
Upvotes: 0