Files
twenty/server/src/api/@generated/person/find-unique-person-or-throw.args.ts
2023-05-26 14:00:32 +02:00

13 lines
391 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ArgsType } from '@nestjs/graphql';
import { PersonWhereUniqueInput } from './person-where-unique.input';
import { Type } from 'class-transformer';
@ArgsType()
export class FindUniquePersonOrThrowArgs {
@Field(() => PersonWhereUniqueInput, {nullable:false})
@Type(() => PersonWhereUniqueInput)
where!: PersonWhereUniqueInput;
}