NestJS - Pipes
Given this pipe usage in a controller method:
What happens if the input data is missing a required field defined in CreateDto?
@UsePipes(new ValidationPipe())
async create(@Body() data: CreateDto) { return data; }
What happens if the input data is missing a required field defined in CreateDto?
