MovieSchema.statics.flagManyAsNowShowing = function (movieIds: string[]) {
  return this.updateMany(
    { movieId: { $in: movieIds } },
    { nowShowing: true, comingSoon: false }
  ).exec();