arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); }
{
"_key" : "110529",
"_id" : "users/110529",
"_rev" : "_XWq57TC--B",
"name" : "Angela"
}
{
"_key" : "110522",
"_id" : "users/110522",
"_rev" : "_XWq57T---B",
"name" : "Gerhard"
}
{
"_key" : "110526",
"_id" : "users/110526",
"_rev" : "_XWq57TC--_",
"name" : "Helmut"
}
SimpleQueryAll(users)
arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); }
{
"_key" : "110529",
"_id" : "users/110529",
"_rev" : "_XWq57TC--B",
"name" : "Angela"
}
{
"_key" : "110522",
"_id" : "users/110522",
"_rev" : "_XWq57T---B",
"name" : "Gerhard"
}
{
"_key" : "110526",
"_id" : "users/110526",
"_rev" : "_XWq57TC--_",
"name" : "Helmut"
}
SimpleQueryAll(users)