Implement scoping on be (#144)
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
import { Field } from '@nestjs/graphql';
|
||||
import { ObjectType } from '@nestjs/graphql';
|
||||
import { Int } from '@nestjs/graphql';
|
||||
|
||||
@ObjectType()
|
||||
export class CompanyCountAggregate {
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
id!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
createdAt!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
updatedAt!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
deletedAt!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
name!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
domainName!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
address!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
employees!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
accountOwnerId!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
workspaceId!: number;
|
||||
|
||||
@Field(() => Int, {nullable:false})
|
||||
_all!: number;
|
||||
}
|
||||
Reference in New Issue
Block a user