After applying the find operation in mongodb.. i get the following list of documents..
db.users.find(....)
i got:
{ \"t
Not sure what you language implementation is but the basic concept is:
var result = [] db.users.find().forEach(function(u) { result.push(u.text) })
And the returned value to result is:
result
["Hey","Hi","Hello","yes"]