Files
twenty/server/src/api/@generated/company/company-sum-aggregate.input.ts
2023-05-26 14:00:32 +02:00

10 lines
208 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
@InputType()
export class CompanySumAggregateInput {
@Field(() => Boolean, {nullable:true})
employees?: true;
}