Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- import { Field, InputType } from '@nestjs/graphql';
-
- @InputType()
- export class EpisodeEnclosureCreateDto {
- @Field()
- url: string;
-
- @Field({nullable: true})
- file?: string;
-
- @Field({nullable: true})
- size?: number;
-
- @Field({nullable: true})
- type?: string;
- }
|