function isNotExisted(_id: String): Promise<boolean> {
  return User
  .findOne({ _id: _id, deleted: { $eq: null} })
  .exec()
  .then(user => {