fix: displayName return undefined and drop displayName from user table (#505)
This commit is contained in:
@ -9,8 +9,8 @@ export class CreateManyCommentThreadArgs {
|
||||
|
||||
@Field(() => [CommentThreadCreateManyInput], {nullable:false})
|
||||
@Type(() => CommentThreadCreateManyInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => CommentThreadCreateManyInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: Array<CommentThreadCreateManyInput>;
|
||||
|
||||
@Field(() => Boolean, {nullable:true})
|
||||
|
||||
@ -9,7 +9,7 @@ export class CreateOneCommentThreadArgs {
|
||||
|
||||
@Field(() => CommentThreadCreateInput, {nullable:false})
|
||||
@Type(() => CommentThreadCreateInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => CommentThreadCreateInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: CommentThreadCreateInput;
|
||||
}
|
||||
|
||||
@ -10,8 +10,8 @@ export class UpdateManyCommentThreadArgs {
|
||||
|
||||
@Field(() => CommentThreadUpdateManyMutationInput, {nullable:false})
|
||||
@Type(() => CommentThreadUpdateManyMutationInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => CommentThreadUpdateManyMutationInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: CommentThreadUpdateManyMutationInput;
|
||||
|
||||
@Field(() => CommentThreadWhereInput, {nullable:true})
|
||||
|
||||
@ -10,8 +10,8 @@ export class UpdateOneCommentThreadArgs {
|
||||
|
||||
@Field(() => CommentThreadUpdateInput, {nullable:false})
|
||||
@Type(() => CommentThreadUpdateInput)
|
||||
@ValidateNested({each: true})
|
||||
@Type(() => CommentThreadUpdateInput)
|
||||
@ValidateNested({each: true})
|
||||
data!: CommentThreadUpdateInput;
|
||||
|
||||
@Field(() => CommentThreadWhereUniqueInput, {nullable:false})
|
||||
|
||||
Reference in New Issue
Block a user