arangosh> q = db.users.all(); q.setBatchSize(20); q.execute(); while (q.hasNext()) { print(q.next()); }
{
"_key" : "111725",
"_id" : "users/111725",
"_rev" : "_Y2g69EK--B",
"name" : "Angela"
}
{
"_key" : "111718",
"_id" : "users/111718",
"_rev" : "_Y2g69EG--B",
"name" : "Gerhard"
}
{
"_key" : "111722",
"_id" : "users/111722",
"_rev" : "_Y2g69EK--_",
"name" : "Helmut"
}
SimpleQueryAll(users)
arangosh> q = db.users.all(); q.execute(20); while (q.hasNext()) { print(q.next()); }
{
"_key" : "111725",
"_id" : "users/111725",
"_rev" : "_Y2g69EK--B",
"name" : "Angela"
}
{
"_key" : "111718",
"_id" : "users/111718",
"_rev" : "_Y2g69EG--B",
"name" : "Gerhard"
}
{
"_key" : "111722",
"_id" : "users/111722",
"_rev" : "_Y2g69EK--_",
"name" : "Helmut"
}
SimpleQueryAll(users)