I have the below schema (apologies that it is in coffeescript)
Schema = mongoose.Schema AuthS = new Schema auth: {type: String, unique: true} nick
Found the problem, need to use function(err,obj) instead:
function(err,obj)
Auth.findOne({nick: 'noname'}, function(err,obj) { console.log(obj); });