import { Field, Int, ObjectType } from '@nestjs/graphql'; import { InheritedModel } from '../../../lib/inheritance'; @ObjectType() @InheritedModel() export class BaseDTO { @Field(() => Int) id: number; // Timestamps @Field(() => Date) created_at: Date; @Field(() => Date) updated_at: Date; }