feat: refactor storage module (#521)

* feat: refactor storage module

* fix: folder need to be kebab case

* fix: comment wrong auth
This commit is contained in:
Jérémy M
2023-07-05 16:34:39 +02:00
committed by GitHub
parent 6e1ffdcc72
commit 2961fed932
74 changed files with 330 additions and 355 deletions

View File

@ -9,8 +9,8 @@ export class CreateManyPipelineProgressArgs {
@Field(() => [PipelineProgressCreateManyInput], {nullable:false})
@Type(() => PipelineProgressCreateManyInput)
@Type(() => PipelineProgressCreateManyInput)
@ValidateNested({each: true})
@Type(() => PipelineProgressCreateManyInput)
data!: Array<PipelineProgressCreateManyInput>;
@Field(() => Boolean, {nullable:true})

View File

@ -9,7 +9,7 @@ export class CreateOnePipelineProgressArgs {
@Field(() => PipelineProgressCreateInput, {nullable:false})
@Type(() => PipelineProgressCreateInput)
@Type(() => PipelineProgressCreateInput)
@ValidateNested({each: true})
@Type(() => PipelineProgressCreateInput)
data!: PipelineProgressCreateInput;
}

View File

@ -10,8 +10,8 @@ export class UpdateManyPipelineProgressArgs {
@Field(() => PipelineProgressUpdateManyMutationInput, {nullable:false})
@Type(() => PipelineProgressUpdateManyMutationInput)
@Type(() => PipelineProgressUpdateManyMutationInput)
@ValidateNested({each: true})
@Type(() => PipelineProgressUpdateManyMutationInput)
data!: PipelineProgressUpdateManyMutationInput;
@Field(() => PipelineProgressWhereInput, {nullable:true})

View File

@ -10,8 +10,8 @@ export class UpdateOnePipelineProgressArgs {
@Field(() => PipelineProgressUpdateInput, {nullable:false})
@Type(() => PipelineProgressUpdateInput)
@Type(() => PipelineProgressUpdateInput)
@ValidateNested({each: true})
@Type(() => PipelineProgressUpdateInput)
data!: PipelineProgressUpdateInput;
@Field(() => PipelineProgressWhereUniqueInput, {nullable:false})