My User model have name,..., password, resetToken, resetTokenExp property.
If I query user (findById, find({}),...), I want to drop password, resetToken and resetTokenExp field
User.findById(id)
.select('-password -resetToken -resetTokenExp')
.exec()
I can use select but these fields are common ones and I dont want to type select everytime I query. How can I set remove these fields globally for User schema