Typeorm find-options realtion

roglog·2021년 4월 1일
0
  • TypeORM은 DB relationship을 자동으로 처리하지 못함
    -> 따로 요구해야만 가져올 수 있음

  • id만 가져오는 방법

    await this.users.findOne({ loadRelationIds: true });
  • class통째로 가져오는 방법

    await this.users.findOne({ relations: true });
profile
Full Stack Developer 📚

0개의 댓글