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

Results 29 adminjs-prisma issues
Sort by recently updated
recently updated
newest added

``` TypeError: Invalid enum value: length at Object.get /dist/generated/backend/client/runtime/library.js:129:966) at isArrayLike /node_modules/lodash/isArrayLike.js:30:42) at keysIn /node_modules/lodash/keysIn.js:29:10) at /node_modules/lodash/_createBaseFor.js:12:17 at baseMerge /node_modules/lodash/_baseMerge.js:24:3) at baseMergeDeep /node_modules/lodash/_baseMergeDeep.js:88:5) at /node_modules/lodash/_baseMerge.js:27:7 at /node_modules/lodash/_createBaseFor.js:17:11 at baseMerge /node_modules/lodash/_baseMerge.js:24:3)...

"@adminjs/prisma": "^4.0.0", when I installed v4.0.0 it can't find only '@adminjs/prisma' when '@adminjs/sql' and '@adminjs/express' works well. I removed node_modules and package-lock.json and reinstalled but still same error.

`convertParam` function doesn't handle arrays. When it converts an integer array property (prisma type is `Int[]`) it tries to parse it as a `Number` and it leads to undefined behaviour....

I am using Prisma's implicit relations (https://www.prisma.io/docs/orm/prisma-schema/data-model/relations/many-to-many-relations#implicit-many-to-many-relations) for a table that I want to use and I get the error: "Error: There are no resources with given id: "_assetRelation"", that...

https://github.com/SoftwareBrothers/adminjs-prisma/blob/main/example-app/package.json these packages is very old , could you update it ?

### Bug description I tried to set which field in my database model should be considered as primary key using: ```javascript { resource: { model: dmmf.modelMap.User, client: prisma }, options:...

I have two models: Artists and Collections. It is Artist 1 - N Collections. The form to create a Collection displays the Artist field correctly, but after selecting an Artist...

It seems that the prisma adapter does not support the "bytes" type: https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#bytes Console output simply says: `Unhandled type: Bytes`

It is not possible compile example app due to typescript compilation error. 1. Run `yarn install` command 2. Run `npx prisma migrate dev` command 3. Rum `yarn build` command ```...