Disable linter on generated code (#363)
This commit is contained in:
+6
-5
@@ -5,10 +5,11 @@ import { Type } from 'class-transformer';
|
||||
|
||||
@ArgsType()
|
||||
export class CreateManyCommentThreadTargetArgs {
|
||||
@Field(() => [CommentThreadTargetCreateManyInput], { nullable: false })
|
||||
@Type(() => CommentThreadTargetCreateManyInput)
|
||||
data!: Array<CommentThreadTargetCreateManyInput>;
|
||||
|
||||
@Field(() => Boolean, { nullable: true })
|
||||
skipDuplicates?: boolean;
|
||||
@Field(() => [CommentThreadTargetCreateManyInput], {nullable:false})
|
||||
@Type(() => CommentThreadTargetCreateManyInput)
|
||||
data!: Array<CommentThreadTargetCreateManyInput>;
|
||||
|
||||
@Field(() => Boolean, {nullable:true})
|
||||
skipDuplicates?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user