42 lines
750 B
TypeScript
42 lines
750 B
TypeScript
import { Field, InputType } from '@nestjs/graphql';
|
|
|
|
import { IsBoolean, IsOptional, IsString } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class UpdateObjectInput {
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
labelSingular?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
labelPlural?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
nameSingular?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
namePlural?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
description?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
icon?: string;
|
|
|
|
@IsBoolean()
|
|
@IsOptional()
|
|
@Field({ nullable: true })
|
|
isActive?: boolean;
|
|
}
|