arangosh> db._create("mycollection")
[ArangoCollection 6726, "mycollection" (type document, status loaded)]
arangosh> db.mycollection.save({ _key: "testKey", Hello : "World" })
{
"_id" : "mycollection/testKey",
"_key" : "testKey",
"_rev" : "_Y2g6hKy--_"
}
arangosh> db._query('FOR my IN mycollection RETURN my._key').toArray()
[
"testKey"
]