Disable linter on generated code (#363)
This commit is contained in:
+7
-6
@@ -6,11 +6,12 @@ import { CommentThreadCreateWithoutCommentsInput } from './comment-thread-create
|
||||
|
||||
@InputType()
|
||||
export class CommentThreadUpsertWithoutCommentsInput {
|
||||
@Field(() => CommentThreadUpdateWithoutCommentsInput, { nullable: false })
|
||||
@Type(() => CommentThreadUpdateWithoutCommentsInput)
|
||||
update!: CommentThreadUpdateWithoutCommentsInput;
|
||||
|
||||
@Field(() => CommentThreadCreateWithoutCommentsInput, { nullable: false })
|
||||
@Type(() => CommentThreadCreateWithoutCommentsInput)
|
||||
create!: CommentThreadCreateWithoutCommentsInput;
|
||||
@Field(() => CommentThreadUpdateWithoutCommentsInput, {nullable:false})
|
||||
@Type(() => CommentThreadUpdateWithoutCommentsInput)
|
||||
update!: CommentThreadUpdateWithoutCommentsInput;
|
||||
|
||||
@Field(() => CommentThreadCreateWithoutCommentsInput, {nullable:false})
|
||||
@Type(() => CommentThreadCreateWithoutCommentsInput)
|
||||
create!: CommentThreadCreateWithoutCommentsInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user