Hi!
Is it possible to have the whole DTO as optional? Lets say I have a POST method and I want to be able to have the body optional. Meaning if I don't pass any body then don't validate it. I've tried marking it as optional in TS with the ? sign, but its still trying to validate an empty body.
@Post('readUsers')
public async readUsers(@Body() payload?: DTO.ReadUsersRequestDto) {} // its awlays trying to validate the payload
