feat: clean prisma file, add validation, add prisma editor (#472)

This commit is contained in:
Jérémy M
2023-06-29 15:41:58 +02:00
committed by GitHub
parent aa612b5fc9
commit d9af205ccb
520 changed files with 6751 additions and 5241 deletions

View File

@ -1,39 +1,47 @@
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';
import { HideField } from '@nestjs/graphql';
@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(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, {nullable:false})
firstname!: string;
@Field(() => String, {nullable:false})
lastname!: string;
@Field(() => String, {nullable:false})
email!: string;
@Field(() => String, {nullable:false})
phone!: string;
@Field(() => String, {nullable:false})
city!: string;
@Field(() => CompanyCreateNestedOneWithoutPeopleInput, {nullable:true})
company?: CompanyCreateNestedOneWithoutPeopleInput;