isExistedComment(_id: String): Promise<boolean> {
    return Comment
      .findOne({ _id: _id,  deleted: { $eq: null}})
      .exec()
      .then(target => {