arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); } { "_key" : "111669", "_id" : "users/111669", "_rev" : "_XoI697y--_", "name" : "Helmut" } { "_key" : "111665", "_id" : "users/111665", "_rev" : "_XoI697u--_", "name" : "Gerhard" } { "_key" : "111672", "_id" : "users/111672", "_rev" : "_XoI697y--B", "name" : "Angela" } SimpleQueryAll(users) arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); } { "_key" : "111669", "_id" : "users/111669", "_rev" : "_XoI697y--_", "name" : "Helmut" } { "_key" : "111665", "_id" : "users/111665", "_rev" : "_XoI697u--_", "name" : "Gerhard" } { "_key" : "111672", "_id" : "users/111672", "_rev" : "_XoI697y--B", "name" : "Angela" } SimpleQueryAll(users)