import { Field, ObjectType } from "@nestjs/graphql"; @ObjectType() export class MyEvent { @Field() id: number; @Field() eventname: string; @Field() datum: Date; @Field() type: EventType; @Field() content: string; @Field() minitext: string; @Field({nullable: true}) link: string; @Field() foto: string; @Field({nullable: true}) formular: number; } export enum EventType { html, markdown, fotos, link }