* 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
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { HideField } from '@nestjs/graphql';
|
|
import { CompanyCreateNestedOneWithoutPeopleInput } from '../company/company-create-nested-one-without-people.input';
|
|
import { WorkspaceCreateNestedOneWithoutPeopleInput } from '../workspace/workspace-create-nested-one-without-people.input';
|
|
|
|
@InputType()
|
|
export class PersonCreateInput {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@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;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
|
|
@Field(() => CompanyCreateNestedOneWithoutPeopleInput, {nullable:true})
|
|
company?: CompanyCreateNestedOneWithoutPeopleInput;
|
|
|
|
@HideField()
|
|
workspace!: WorkspaceCreateNestedOneWithoutPeopleInput;
|
|
}
|