Implement scoping on be (#144)
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user