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