* fix: add firstname and lastanme to user model * fix: avoid undefined in displayName resolve field * fix: user firstName and lastName instead of firstname lastname * fix: person table proper naming firstName lastName * fix: migrate front with firstName and lastName * fix: make front-graphql-generate not working
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ObjectType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { HideField } from '@nestjs/graphql';
|
|
import { PersonCountAggregate } from './person-count-aggregate.output';
|
|
import { PersonMinAggregate } from './person-min-aggregate.output';
|
|
import { PersonMaxAggregate } from './person-max-aggregate.output';
|
|
|
|
@ObjectType()
|
|
export class PersonGroupBy {
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
id!: string;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsString()
|
|
firstName!: string;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsString()
|
|
lastName!: string;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsEmail()
|
|
email!: string;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsPhoneNumber()
|
|
phone!: string;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
@Validator.IsString()
|
|
city!: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
companyId?: string;
|
|
|
|
@HideField()
|
|
workspaceId!: string;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:false})
|
|
createdAt!: Date | string;
|
|
|
|
@Field(() => Date, {nullable:false})
|
|
updatedAt!: Date | string;
|
|
|
|
@Field(() => PersonCountAggregate, {nullable:true})
|
|
_count?: PersonCountAggregate;
|
|
|
|
@Field(() => PersonMinAggregate, {nullable:true})
|
|
_min?: PersonMinAggregate;
|
|
|
|
@Field(() => PersonMaxAggregate, {nullable:true})
|
|
_max?: PersonMaxAggregate;
|
|
}
|