[06:58:18] <sabrehagen> hi guys, i have a document which has a field which is an array of object ids. i want to query all documents, and return them sorted by the length of this array. how would i do that?
[07:46:53] <morenoh149> sabrehagen: you want to query all the documents listed in that array. then return them sorted. correct?
[13:27:15] <ideea> hi. help please :) im inserting new record in collection from PHP and i want to get it by mongo id in meteor.
[13:27:35] <ideea> when i console.log it i see _id: LocalCollection._ObjectID
[13:27:46] <ideea> what is LocalCollection_ObjectID and how i can filter by it ? oO
[13:27:56] <ideea> why there is no _id : 2sc9asf9aws9ff9 ?
[18:26:03] <_cristian_> Hi there. I have two collections posts ( _id, title .. ) and comments ( _id, posts_id, description ). So I want to find all posts including its comments. How would you do it? Currently now, I am doing a query for all posts and then a query to take all comments by each posts.
[18:26:13] <_cristian_> But maybe it's not so efficient :P
[18:26:38] <_cristian_> PD: I can't embed comments in posts.