For context, im using multipartform-data because i need to pass some file data along with the POST request.
The json string from the body of the request is not being deserialized into the CreateProductDto
Here's an example of the issue I'm facing:
@CreateDecorators('/product') createProduct( @Body('document') createProductDto: CreateProductDto, @UploadedFiles() files: CreateFilesDto, ) { console.log(createPolymerDto.constructor.name); // <- returns string instead of CreateProductDto }