how to populate more than 1 model in mongoose code example
Example: mongoose multiple populate
Story.
find(...).
populate('fans').
populate('author').
exec();
Story.
find(...).
populate('fans').
populate('author').
exec();