Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

nested dto nestjs

class Info {
    readonly title:string
    readonly score:number
    readonly description:string
    readonly dateOfCreation:Date
}

export class SampleDto {
    @Type(() => Info)
    @ValidatedNested()
    readonly info: Info

    ...Follow same for the rest of schema

}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #nested #dto #nestjs
ADD COMMENT
Topic
Name
6+4 =