import { Field, ID, InputType } from '@nestjs/graphql'; @InputType() export class NewItemInput { @Field() name: string; @Field({ nullable: true }) notes?: string; }