📅  最后修改于: 2022-03-11 14:58:25.655000             🧑  作者: Mango
@ObjectType()
class Recipe {
@Field()
title: string;
@Field(type => [Rate])
ratings: Rate[];
@Field({ nullable: true })
averageRating?: number;
}