Guilherme Ferreira Matos

Results 1 comments of Guilherme Ferreira Matos

I'm also facing this issue with the following code: ```javascript class Address { @IsString() name: string; } class Shop { @IsString() name: string; @ValidateNested() @Type(() => Address) address: Address; }...