NestJS - Pipes
Given this controller method with a pipe bound at method level:
What happens if the incoming 'id' parameter is not a valid number?
@UsePipes(new ValidationPipe())
@Get(':id')
getItem(@Param('id') id: number) { return id; }What happens if the incoming 'id' parameter is not a valid number?
