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