arangosh> result = db.users.all().toArray();
[
{
"_key" : "74266",
"_id" : "users/74266",
"_rev" : "_ZG8LmhS---",
"name" : "Gerhard"
},
{
"_key" : "74268",
"_id" : "users/74268",
"_rev" : "_ZG8LmhS--A",
"name" : "Helmut"
},
{
"_key" : "74270",
"_id" : "users/74270",
"_rev" : "_ZG8LmhW---",
"name" : "Angela"
}
]
arangosh> q = db.users.all(); q.execute(); result = [ ]; while (q.hasNext()) { result.push(q.next()); }
SimpleQueryAll(users)