import { Field, ID, ObjectType } from '@nestjs/graphql'; import { User } from 'src/user/user.model'; @ObjectType() export class Shortcode { @Field(() => ID, { description: 'The 12 digit alphanumeric code', }) id: string; @Field({ description: 'JSON string representing the request data', }) request: string; @Field({ description: 'JSON string representing the properties for an embed', nullable: true, }) properties: string; @Field({ description: 'Timestamp of when the Shortcode was created', }) createdOn: Date; } @ObjectType() export class ShortcodeCreator { @Field({ description: 'Uid of user who created the shortcode', }) uid: string; @Field({ description: 'Email of user who created the shortcode', }) email: string; } @ObjectType() export class ShortcodeWithUserEmail { @Field(() => ID, { description: 'The 12 digit alphanumeric code', }) id: string; @Field({ description: 'JSON string representing the request data', }) request: string; @Field({ description: 'JSON string representing the properties for an embed', nullable: true, }) properties: string; @Field({ description: 'Timestamp of when the Shortcode was created', }) createdOn: Date; @Field({ description: 'Details of user who created the shortcode', nullable: true, }) creator: ShortcodeCreator; }