arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); } { "_key" : "16332", "_id" : "users/16332", "_rev" : "_WpTBAgG--_", "name" : "Angela" } { "_key" : "16325", "_id" : "users/16325", "_rev" : "_WpTBAgC--_", "name" : "Gerhard" } { "_key" : "16329", "_id" : "users/16329", "_rev" : "_WpTBAgC--B", "name" : "Helmut" } SimpleQueryAll(users) arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); } { "_key" : "16332", "_id" : "users/16332", "_rev" : "_WpTBAgG--_", "name" : "Angela" } { "_key" : "16325", "_id" : "users/16325", "_rev" : "_WpTBAgC--_", "name" : "Gerhard" } { "_key" : "16329", "_id" : "users/16329", "_rev" : "_WpTBAgC--B", "name" : "Helmut" } SimpleQueryAll(users)