NestJS - Database with TypeORM
Identify the mistake in this NestJS entity relation:
class Article {
@OneToMany(() => Comment)
comments: Comment;
}class Article {
@OneToMany(() => Comment)
comments: Comment;
}comments is declared as a single Comment, which is incorrect.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions