Sử dụng $slice
.
db.foo.find({ bar : "xyz" } , { my_array : { $slice : [n , 1] } } )
sẽ truy xuất phần tử thứ n của mảng "my_array" của tất cả các tài liệu trong bộ sưu tập foo nơi bar ="xyz".
Một số ví dụ khác từ tài liệu MongoDB:
db.posts.find({}, {comments:{$slice: 5}}) // first 5 comments
db.posts.find({}, {comments:{$slice: -5}}) // last 5 comments
db.posts.find({}, {comments:{$slice: [20, 10]}}) // skip 20, limit 10
db.posts.find({}, {comments:{$slice: [-20, 10]}}) // 20 from end, limit 10
Bạn có thể đọc ở đây:http://www.mongodb.org/display/DOCS/Retrieving+a+Subset+of+Fields