-
[NestJS] GraphQL Input Type Enum Field 사용 방법JavaScript/NestJS 2020. 11. 25. 11:17728x90
- enum에 registerEnumType 추가해줘야 사용 가능
@InputType() export class PracticeInputType { @IsNumber() @Field(() => Int) public id: number; @IsEnum(PracticeType) @Field(() => PracticeType) public practiceType: PracticeType; }
export enum PracticeType { Test1 = 'test1', Test2 = 'test2', Test3 = 'test3', } registerEnumType(PracticeType, { name: 'PracticeType' });
728x90'JavaScript > NestJS' 카테고리의 다른 글
[NestJS] NestJS caching (0) 2021.09.05 [NestJS] Mapped Types (0) 2021.03.01 [NestJS] 순환 의존성(Circular Dependency) 해결 방법 (0) 2020.11.30 [NestJS] NestJS DataLoader (0) 2020.11.21 [NestJS] Unknown authentication strategy "local" (0) 2020.09.22