fix: displayName return undefined and drop displayName from user table (#505)
This commit is contained in:
@ -9,8 +9,8 @@ export class CreateManyPipelineProgressArgs {
|
||||
|
||||
@Field(() => [PipelineProgressCreateManyInput], {nullable:false})
|
||||
@Type(() => PipelineProgressCreateManyInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => PipelineProgressCreateManyInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: Array<PipelineProgressCreateManyInput>;
|
||||
|
||||
@Field(() => Boolean, {nullable:true})
|
||||
|
||||
@ -9,7 +9,7 @@ export class CreateOnePipelineProgressArgs {
|
||||
|
||||
@Field(() => PipelineProgressCreateInput, {nullable:false})
|
||||
@Type(() => PipelineProgressCreateInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => PipelineProgressCreateInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: PipelineProgressCreateInput;
|
||||
}
|
||||
|
||||
@ -10,8 +10,8 @@ export class UpdateManyPipelineProgressArgs {
|
||||
|
||||
@Field(() => PipelineProgressUpdateManyMutationInput, {nullable:false})
|
||||
@Type(() => PipelineProgressUpdateManyMutationInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => PipelineProgressUpdateManyMutationInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: PipelineProgressUpdateManyMutationInput;
|
||||
|
||||
@Field(() => PipelineProgressWhereInput, {nullable:true})
|
||||
|
||||
@ -10,8 +10,8 @@ export class UpdateOnePipelineProgressArgs {
|
||||
|
||||
@Field(() => PipelineProgressUpdateInput, {nullable:false})
|
||||
@Type(() => PipelineProgressUpdateInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => PipelineProgressUpdateInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: PipelineProgressUpdateInput;
|
||||
|
||||
@Field(() => PipelineProgressWhereUniqueInput, {nullable:false})
|
||||
|
||||
Reference in New Issue
Block a user