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