nestjs + graphql で input の @IsOptional() がうまく聞かない時の修正箇所

● nestjs + graphql で input の @IsOptional() がうまく聞かない時の修正箇所

teamName を オプショナルに変更する

@Field()
teamName: string;

     ↓
✅ @IsOptional() と { nullable: true } を加えるとオプショナルになります

@IsOptional()
@Field({ nullable: true })
teamName?: string;

❌ { nullable: true } が抜けていると オプショナルになりません

@IsOptional()
@Field()
teamName?: string;
No.2357
05/30 09:48

edit