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