28 lines
616 B
TypeScript
28 lines
616 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ObjectType } from '@nestjs/graphql';
|
|
|
|
@ObjectType()
|
|
export class WorkspaceMaxAggregate {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
id?: string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
domainName?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
displayName?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
logo?: string;
|
|
}
|