import { Field, ID, InputType } from "@nestjs/graphql"; @InputType() export class UploadFileInput { @Field(() => ID, { nullable: true, description: "Target profile. If omitted, auto-creates a Default profile." }) profileId?: string; @Field() fileName!: string; @Field() mimeType!: string; @Field({ description: "Base64-encoded file content" }) content!: string; }