When searching a collection on some field, I can specify that I only want returned certain fields. In the case of only returning one field, let's say "_id", the find command returns an array of key:value pairs [ {_id:123}, {_id:234}, {_id:345} ] Is there any way to have find return an array of values only? As in: [123, 234, 345]
I can massage the returned array on my own, but if it's possible for mongodb to do this for me, then I'd rather have it do so.