У меня есть DTO с полем category, который содержит в себе объект.
Не понимаю как его передать...
create(dto: CreateServiceDto) {
const newService = new this.ServiceModel({
name: dto.name,
price: dto.price,
duration: dto.duration,
category: "??? тут проблема"
});
return newService.save();
}
Объект DTO
export class CreateServiceDto {
@IsString()
readonly name: string;
@IsString()
readonly price: number;
@IsString()
readonly duration: number;
@IsObject()
readonly category: {"id" : string, "name" : string};
}