[09:47:18] <seekerofjoins> Hey everyone, I'm using mongoengine and trying to figure out a way to query one collection for documents that have a certain value in a different document that they reference
[09:48:07] <seekerofjoins> (meaning, I have collection A, with each document referencing a document in collection B, and I want to query for documents in A whose corresponding B has a certain value in a field
[13:07:52] <Derick> two parts: the server (mongod) which you need to run in the background, like you would do with mysqld — and "mongo" which is the client interface
[13:08:12] <HaZ7> thank you, just starting out on my web development journey, everything seems foreign atm :)
[15:16:56] <wreed> hi guys im following the mongoose docs for populating a many to many relationship but im a little confused if its intentional that they only set the story's reference to the author and not the authors reference to the story. can mongoose do any of this automatically and thats why? http://mongoosejs.com/docs/populate.html
[15:17:30] <Derick> wreed: you should ask the mongoose authors really
[15:18:06] <wreed> yeah i just figured i would ask here in case anyone was familiar :/
[16:53:09] <davocko> I need to do a $group after a $lookup over an aggregation pipeline but it takes forever .... is there something I can do to speed it up or a workaround?
[18:58:49] <Derick> only think you can try is to limit the amount of documents coming through the pipeline I think
[19:37:25] <guardian> hello, is this an acceptable place to report errors 500 when following mongodb university courses?
[19:38:15] <threespades> there should be something inside the university page for that
[20:21:48] <micseydel> Hello. I'm surprised by some results I'm seeing a console. db.achievement.find({params: {requiredCount: 4}}) yields one document, as expected, but then db.achievement.find({params: {requiredCount: {$gt: 1}}}) yields zero. I can't see what am doing wrong. Is my syntax off?