* 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
70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ObjectType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@ObjectType()
|
|
export class UserMaxAggregate {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
id?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
firstName?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
lastName?: string;
|
|
|
|
@HideField()
|
|
displayName?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsEmail()
|
|
email?: string;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
@Validator.IsBoolean()
|
|
@Validator.IsOptional()
|
|
emailVerified?: boolean;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
avatarUrl?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
locale?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
phoneNumber?: string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
@Validator.IsDate()
|
|
@Validator.IsOptional()
|
|
lastSeen?: Date | string;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
@Validator.IsBoolean()
|
|
@Validator.IsOptional()
|
|
disabled?: boolean;
|
|
|
|
@HideField()
|
|
passwordHash?: string;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
}
|