-
[NestJS] Mapped TypesJavaScript/NestJS 2021. 3. 1. 13:38728x90
- 엔티티 필드들을 변형할 때 유용
Installation
$ npm i --save @nestjs/mapped-types
Mapped types
- PartialType : 모든 필드들을 optional로 구성
- PickType : 선택된 필드들을 구성
- OmitType : 선택된 필드들을 제외한 나머지 필드들로 구성
- IntersectionType : 두 타입을 하나로 합쳐 구성
참조
nestjs/mappled-types
728x90'JavaScript > NestJS' 카테고리의 다른 글
[NestJs] Lifecycle events (0) 2023.09.03 [NestJS] NestJS caching (0) 2021.09.05 [NestJS] 순환 의존성(Circular Dependency) 해결 방법 (0) 2020.11.30 [NestJS] GraphQL Input Type Enum Field 사용 방법 (0) 2020.11.25 [NestJS] NestJS DataLoader (0) 2020.11.21