Disable linter on generated code (#363)
This commit is contained in:
@ -6,11 +6,12 @@ import { CommentThreadTargetWhereInput } from './comment-thread-target-where.inp
|
||||
|
||||
@ArgsType()
|
||||
export class UpdateManyCommentThreadTargetArgs {
|
||||
@Field(() => CommentThreadTargetUpdateManyMutationInput, { nullable: false })
|
||||
@Type(() => CommentThreadTargetUpdateManyMutationInput)
|
||||
data!: CommentThreadTargetUpdateManyMutationInput;
|
||||
|
||||
@Field(() => CommentThreadTargetWhereInput, { nullable: true })
|
||||
@Type(() => CommentThreadTargetWhereInput)
|
||||
where?: CommentThreadTargetWhereInput;
|
||||
@Field(() => CommentThreadTargetUpdateManyMutationInput, {nullable:false})
|
||||
@Type(() => CommentThreadTargetUpdateManyMutationInput)
|
||||
data!: CommentThreadTargetUpdateManyMutationInput;
|
||||
|
||||
@Field(() => CommentThreadTargetWhereInput, {nullable:true})
|
||||
@Type(() => CommentThreadTargetWhereInput)
|
||||
where?: CommentThreadTargetWhereInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user