mirror of https://gitee.com/bigwinds/arangodb
15 lines
462 B
Plaintext
15 lines
462 B
Plaintext
avocado> db.five.all();
|
|
{ "doc" : 2, "_id" : "5961858:7272578" }
|
|
{ "doc" : 4, "_id" : "5961858:7403650" }
|
|
{ "doc" : 3, "_id" : "5961858:7338114" }
|
|
{ "doc" : 1, "_id" : "5961858:7207042" }
|
|
{ "doc" : 5, "_id" : "5961858:7469186" }
|
|
|
|
avocado> db.five.all().limit(2);
|
|
{ "doc" : 2, "_id" : "5961858:7272578" }
|
|
{ "doc" : 4, "_id" : "5961858:7403650" }
|
|
|
|
avocado> db.five.all().limit(-2);
|
|
{ "doc" : 1, "_id" : "5961858:7207042" }
|
|
{ "doc" : 5, "_id" : "5961858:7469186" }
|