NestJS - Pipes
Given this NestJS controller method:
What will be the response when the client requests
@Get('status/:flag')
checkStatus(@Param('flag', ParseBoolPipe) flag: boolean) { return flag; }What will be the response when the client requests
/status/true?