11 lines
242 B
TypeScript
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;
|
|
}
|