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

11 lines
242 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ObjectType } from '@nestjs/graphql';
import { Int } from '@nestjs/graphql';
@ObjectType()
export class CompanySumAggregate {
@Field(() => Int, {nullable:true})
employees?: number;
}