As part of a CMS migration we store all content as JSON in ArangoDB. Content objects have to path properties
_path = '/path/to/my/content/foo.html'
_path2 = ['path', 'to', 'my', 'content', 'foo.html']
Basic question: what is the best way to query in AQL for all documents by where _path matches a particular prefix like '/path' or '/path/to/my/content'.
I can use FILTER doc._path like '/path/%' but that's not very efficient...any better idea?