I'm trying to exclude the property "password" from the generated documentation in the User model. Is their an attribute on @ApiProperty to remove the field from the doc gen ?
I was able to exclude it by adding @ApiProperty(readable=false, writable=false) on the password property
Most helpful comment
I was able to exclude it by adding @ApiProperty(readable=false, writable=false) on the password property