import {Entity} from "../../../../src/decorator/entity/Entity"; import {PrimaryGeneratedColumn} from "../../../../src/decorator/columns/PrimaryGeneratedColumn"; import {Column} from "../../../../src/decorator/columns/Column"; import {OneToMany} from "../../../../src/decorator/relations/OneToMany"; import {PostCategory} from "./PostCategory"; @Entity() export class Post { @PrimaryGeneratedColumn() id: number; @Column() title: string; @OneToMany(type => PostCategory, postCategoryRelation => postCategoryRelation.post) categories: PostCategory[]; }