Disable linter on generated code (#363)
This commit is contained in:
@ -6,11 +6,12 @@ import { CompanyWhereUniqueInput } from './company-where-unique.input';
|
||||
|
||||
@ArgsType()
|
||||
export class UpdateOneCompanyArgs {
|
||||
@Field(() => CompanyUpdateInput, { nullable: false })
|
||||
@Type(() => CompanyUpdateInput)
|
||||
data!: CompanyUpdateInput;
|
||||
|
||||
@Field(() => CompanyWhereUniqueInput, { nullable: false })
|
||||
@Type(() => CompanyWhereUniqueInput)
|
||||
where!: CompanyWhereUniqueInput;
|
||||
@Field(() => CompanyUpdateInput, {nullable:false})
|
||||
@Type(() => CompanyUpdateInput)
|
||||
data!: CompanyUpdateInput;
|
||||
|
||||
@Field(() => CompanyWhereUniqueInput, {nullable:false})
|
||||
@Type(() => CompanyWhereUniqueInput)
|
||||
where!: CompanyWhereUniqueInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user