arangosh> result = db.users.all().toArray();
[
{
"_key" : "16348",
"_id" : "users/16348",
"_rev" : "_WpTBAgm--B",
"name" : "Angela"
},
{
"_key" : "16345",
"_id" : "users/16345",
"_rev" : "_WpTBAgm--_",
"name" : "Helmut"
},
{
"_key" : "16341",
"_id" : "users/16341",
"_rev" : "_WpTBAgi--_",
"name" : "Gerhard"
}
]
arangosh> q = db.users.all(); q.execute(); result = [ ]; while (q.hasNext()) { result.push(q.next()); }
SimpleQueryAll(users)