Hi,
is there anyway to do something like
var first_user = User.find({ _id: user_id }).first();
using the mongoose ORM? http://github.com/LearnBoost/mongoose
What I'm trying to do is store the returned result of the query for later use.
When I use the above all I get returned into the "first_user" var is the QueryWriter object. Hoping there is a knowledgeable Mongoose user out there who can help me.