Newer
Older
import { Field, ObjectType } from '@nestjs/graphql';
import { Entity } from './entity.model';
export class Group extends Entity {
@Field({ nullable: true })
description?: string;
@Field(() => [String], { description: "List of variable's ids" })
variables: string[];