As part of my document in mongo I'm storing an array of objects. How can I query it for only the 4th element of the array for example? So I don't want the get the entire array out, just the 4th element.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use $slice.
will retrieve the nth element of the array "my_array" of all documents in the foo collection where bar = "xyz". Some other examples from the MongoDB documentation:
Which you can read here: http://www.mongodb.org/display/DOCS/Retrieving+a+Subset+of+Fields |
|||
|
|