NestJS - Pipes
Given this NestJS controller method:
@Get(':active')
getStatus(@Param('active', ParseBoolPipe) active: boolean) {
return active ? 'Active' : 'Inactive';
}
What will be the response if the client requests /true?