I\'m pretty confused with the use of the select method. This is how I use it, and it\'s wrong:
select
Transaction.find({username : user.username}).sele
this is another way: queries in mongoose
Transaction.find({username : user.username}) .select('uniqueId confirmation_link item_name timeout username') .exec(function(err, txs) { console.log(txs); });