Hey
I can't figure out how to pass an array of strings into the query builder - it strips the " symbols.
For example, i have a query for a request with an array of roomtypes:
var filter = { roomTypes: ["DBL", "SGL"] }
When i try to set this as an array to "POSITION" in AQL:
aqb.let({roomtypes : aqb.list(filter.roomTypes)})...
I get the error "[ArangoError 1203: collection not found (DBL)]"
aqb.list(filter.roomTypes).toAQL() returns [DBL, SGL], i guess this should be ["DBL", "SGL"], but I can't figure out how to make it so...
Thanks