arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); }
{
"_key" : "111646",
"_id" : "users/111646",
"_rev" : "_YOn1gTC--_",
"name" : "Helmut"
}
{
"_key" : "111649",
"_id" : "users/111649",
"_rev" : "_YOn1gTC--B",
"name" : "Angela"
}
{
"_key" : "111642",
"_id" : "users/111642",
"_rev" : "_YOn1gT---B",
"name" : "Gerhard"
}
SimpleQueryAll(users)
arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); }
{
"_key" : "111646",
"_id" : "users/111646",
"_rev" : "_YOn1gTC--_",
"name" : "Helmut"
}
{
"_key" : "111649",
"_id" : "users/111649",
"_rev" : "_YOn1gTC--B",
"name" : "Angela"
}
{
"_key" : "111642",
"_id" : "users/111642",
"_rev" : "_YOn1gT---B",
"name" : "Gerhard"
}
SimpleQueryAll(users)