Gunakan $slice
.
db.foo.find({ bar : "xyz" } , { my_array : { $slice : [n , 1] } } )
akan mengambil elemen ke-n dari larik "my_array" dari semua dokumen dalam koleksi foo di mana bar ="xyz".
Beberapa contoh lain dari dokumentasi 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
Yang dapat Anda baca di sini:http://www.mongodb.org/display/DOCS/Retrieving+a+Subset+of+Fields