Article.findOneAndUpdate({
    _id: req.params.articleId
  }, {$push: {
    vote: new mongoose.Types.ObjectId(voterId)
  }},