typeorm-polymorphic icon indicating copy to clipboard operation
typeorm-polymorphic copied to clipboard

Typeorm polymorphic relationship management

Results 29 typeorm-polymorphic issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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)...

bug
help wanted

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 ![image](https://user-images.githubusercontent.com/485799/189512964-4f85304e-6d22-4f3c-aaf1-810385b9d52d.png)

…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...