metropolis/src/items/items.model.ts
Lauren Liberda c40d132584 item parents
2021-07-08 23:58:07 +02:00

19 lines
346 B
TypeScript

import { Field, ID, ObjectType } from '@nestjs/graphql';
@ObjectType('Item', {
description: 'Either the inventored thing or a box containing them',
})
export class ItemModel {
@Field((type) => ID)
id: string;
@Field()
name: string;
@Field({ nullable: true })
notes?: string;
@Field({ nullable: true })
parent?: ItemModel;
}