Disable linter on generated code (#363)
This commit is contained in:
@ -4,24 +4,25 @@ import { CommentableType } from '../prisma/commentable-type.enum';
|
||||
|
||||
@ObjectType()
|
||||
export class CommentThreadTargetMinAggregate {
|
||||
@Field(() => String, { nullable: true })
|
||||
id?: string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
createdAt?: Date | string;
|
||||
@Field(() => String, {nullable:true})
|
||||
id?: string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
updatedAt?: Date | string;
|
||||
@Field(() => Date, {nullable:true})
|
||||
createdAt?: Date | string;
|
||||
|
||||
@Field(() => Date, { nullable: true })
|
||||
deletedAt?: Date | string;
|
||||
@Field(() => Date, {nullable:true})
|
||||
updatedAt?: Date | string;
|
||||
|
||||
@Field(() => String, { nullable: true })
|
||||
commentThreadId?: string;
|
||||
@Field(() => Date, {nullable:true})
|
||||
deletedAt?: Date | string;
|
||||
|
||||
@Field(() => CommentableType, { nullable: true })
|
||||
commentableType?: keyof typeof CommentableType;
|
||||
@Field(() => String, {nullable:true})
|
||||
commentThreadId?: string;
|
||||
|
||||
@Field(() => String, { nullable: true })
|
||||
commentableId?: string;
|
||||
@Field(() => CommentableType, {nullable:true})
|
||||
commentableType?: keyof typeof CommentableType;
|
||||
|
||||
@Field(() => String, {nullable:true})
|
||||
commentableId?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user