import { ValidateNested, ValidatePromise } from 'class-validator'; export class Post { @ValidateNested() @ValidatePromise() user: Promise<User>; }