I have a collection called one-two
and I would like to list a few of the documents in the collection:
FOR v IN one-two
RETURN v
But I get the following error:
Query: AQL: collection or view not found: one (while parsing)
How do I specify the collection with a -
in the name?
I've tried the usual options, '
, "
and camelCasing it oneTwo
but they all fail.
The ArangoDB documentation Collection and View Names clearly states that a dash (-) is permitted.