mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 04:12:28 +00:00
18 lines
804 B
TypeScript
18 lines
804 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { CommentThreadTargetScalarWhereInput } from './comment-thread-target-scalar-where.input';
|
|
import { Type } from 'class-transformer';
|
|
import { CommentThreadTargetUpdateManyMutationInput } from './comment-thread-target-update-many-mutation.input';
|
|
|
|
@InputType()
|
|
export class CommentThreadTargetUpdateManyWithWhereWithoutCommentThreadInput {
|
|
|
|
@Field(() => CommentThreadTargetScalarWhereInput, {nullable:false})
|
|
@Type(() => CommentThreadTargetScalarWhereInput)
|
|
where!: CommentThreadTargetScalarWhereInput;
|
|
|
|
@Field(() => CommentThreadTargetUpdateManyMutationInput, {nullable:false})
|
|
@Type(() => CommentThreadTargetUpdateManyMutationInput)
|
|
data!: CommentThreadTargetUpdateManyMutationInput;
|
|
}
|