I'm using nodeJS with MongoDB. I'm trying to query the DB and add populate like the doc says:
Story
.findOne({ title: /timex/i })
.populate('_creator', 'name')
The thing is, I need to use '_creator', 'name' several times. How can I store this at the start of my file so that I can use it multiple times?