Files
twenty/server/src/core/@generated/comment-thread/delete-many-comment-thread.args.ts
T
2023-06-23 08:43:41 -07:00

13 lines
395 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ArgsType } from '@nestjs/graphql';
import { CommentThreadWhereInput } from './comment-thread-where.input';
import { Type } from 'class-transformer';
@ArgsType()
export class DeleteManyCommentThreadArgs {
@Field(() => CommentThreadWhereInput, {nullable:true})
@Type(() => CommentThreadWhereInput)
where?: CommentThreadWhereInput;
}