isExistedImage(_id: String): Promise<boolean> {
    return Image
      .findOne({ _id: _id}) // 論理削除はないので単純に_id検索
      .exec()
      .then(target => {