typeorm field relation not showing
@Entity()
export class Photo extends RootEntity {
@PrimaryGeneratedColumn()
public id: string;
@ManyToOne((type) => User, { eager: true })
public user: User;
}