arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); } { "_key" : "16467", "_id" : "users/16467", "_rev" : "_XiAwVV6--D", "name" : "Angela" } { "_key" : "16464", "_id" : "users/16464", "_rev" : "_XiAwVV6--B", "name" : "Helmut" } { "_key" : "16460", "_id" : "users/16460", "_rev" : "_XiAwVV6--_", "name" : "Gerhard" } SimpleQueryAll(users) arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); } { "_key" : "16467", "_id" : "users/16467", "_rev" : "_XiAwVV6--D", "name" : "Angela" } { "_key" : "16464", "_id" : "users/16464", "_rev" : "_XiAwVV6--B", "name" : "Helmut" } { "_key" : "16460", "_id" : "users/16460", "_rev" : "_XiAwVV6--_", "name" : "Gerhard" } SimpleQueryAll(users)