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

TypeORM adapter for AdminJS

Results 28 adminjs-typeorm issues
Sort by recently updated
recently updated
newest added

Is there a good reason for this line's logic? I think in many cases primary columns such as those non-auto-generated ones should be editable. https://github.com/SoftwareBrothers/adminjs-typeorm/blob/b1c607624b1cf284892856bfb59012854829ed98/src/Property.ts#L17 "they" are doing it with...

Admin Js types is missing env and I get this type error ![Screen Shot 2022-10-18 at 11 03 20 AM](https://user-images.githubusercontent.com/83302546/196497608-a624a900-dab2-4ad5-ab70-5d4bccb56782.png)

Allows filtering by `bigint`. Was a necessary addition for our team as we use `bigint` instead of `int` for most things.

Using v4.0.0 and adminjs v6.0.0, I'm getting the following error when navigating to localhost:port/admin/login: ![Capture d’écran 2022-08-04 à 10 30 23](https://user-images.githubusercontent.com/42497995/182801510-7f1cd32c-eae8-4e4e-8dfd-50b08208d55e.png)

I have 2 entities: `User` and `Follow`, which is manual many-to-many relationship table. Both tables are identified by AdminBro and there are pages for them in navigation panel. But when...

**Describe the bug** I'm using TypeORM, and there's a weird behavior when using an entity with a primary key not named "id". Adding a resource that has a relation to...

Hello folks! I have the following code: ```ts // acount.ts export class Account { id?: number exchangeAccountId: string externalUserId: string apiKey: string apiSecret: string isActive: boolean constructor( exchangeAccountId: string, externalUserId:...

enhancement

on ver 1.4.0: I followed README and defined @RelationId() on my relation entities - but i cant get any relations to show up in adminbro UI. I can edit resources...

**Describe the bug** In typeorm adapter (maybe its related) there is a 500 error right now when trying to access missing record: http://localhost:3000/admin/resources/Photo/records/5/show?recordIds=5 shows: **Installed libraries and their versions** *...