Dec 28, 2023
not sure but looking at this code -
import { Expose } from 'class-transformer';
class GeneralUserDto {
@Expose()
email : string;
@Expose()
mobile : number;
}
you are exposing moblile but your problem statement was to exclude the mobile. May be you wanted to expose country