import { ObjectType, Field } from 'type-graphql'; @ObjectType() export default class UserProfile { @Field(() => String) firstName?: string; @Field(() => String) lastName?: string; }