typeorm-polymorphic
typeorm-polymorphic copied to clipboard
Typeorm polymorphic relationship management
Hi! I have a question regarding inheritance. I have a Organization class (not an entity) and many entities that inherit from this class such as Grower, Company, Client, etc. What...
Paragraphs.entity.ts ```ts import { Column, PrimaryGeneratedColumn, ManyToOne, Entity, JoinColumn, OneToMany, JoinTable, } from 'typeorm'; import { DateAudit } from '@entities/date-audit.entity'; import { Posts as Post } from '@posts/posts.entity'; import {...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...
Getting this error following the Readme: ``` (node:117404) UnhandledPromiseRejectionWarning: TypeError: val.slice is not a function at escapeString (D:\dev\mmdb\node_modules\sqlstring\lib\SqlString.js:202:23) at Object.escape (D:\dev\mmdb\node_modules\sqlstring\lib\SqlString.js:56:21) at Object.format (D:\dev\mmdb\node_modules\sqlstring\lib\SqlString.js:100:19) at PoolConnection.Connection.format (D:\dev\mmdb\node_modules\mysql\lib\Connection.js:271:20) at PoolConnection.query (D:\dev\mmdb\node_modules\mysql\lib\Connection.js:189:22)...
Have a dependency tree issue with `typeorm@"^0.3.0-alpha.24` ``` npm WARN using --force Recommended protections disabled. npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm...
I was checking out the repo in npm and it says the latest version is `0.0.10`. I cannot see it in the repo though 
…entityType https://github.com/bashleigh/typeorm-polymorphic/issues/9
Fixes https://github.com/bashleigh/typeorm-polymorphic/issues/46
Not sure if this is supposed to be a capability of this library or not, but when I add the following unit test to this library to test whether it...