-
### Bug description
So currently I am using Nexus + Pal + Prisma + MySQL (MARIADB). I noticed some performance issues. I inserted 9561 entries in the user table and enabled the Prisma logs
`log: […
-
## Issue description
I'm experiencing slow query execution when using the `@graphql-debugger/trace-schema` package in my schema setup. My schema setup includes Nexus for defining the GraphQL schema…
-
issue when we have Prisma name used in our files
**Before the codemod**
```ts
import { PrismaClient } from '@prisma/client'
import { PrismaDelete, onDeleteArgs } from '@paljs/plugins'
class P…
-
npm packages are outdated. e.g.:
https://www.npmjs.com/package/@paljs/generator — 4.0.12
https://www.npmjs.com/package/@paljs/plugins — 4.0.8
-
**Is your feature request related to a problem? Please describe.**
The following query pulls the whole posts table in memory:
`
query{
posts{
id
}
}
`
If there are a large number of posts…
-
@AhmedElywa
I have the following schema
```
model LeaveOfAbsence {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
id String @id @default(cuid())…
-
I can't submit a query which looks like following:
```
query {
users {
id
fName
sName
pets(where: {
type: "dog"
}) {
id
name
}
}
}
```
or
…
-
Hi, pal is awesome thank you. I have a problem, with 2300 generated files, the line `import * as types from 'generated/types'` is taking something like 45 seconds here. Is there a way we can improve u…
-
The `window.addEventListener` and `window.removeEventListener` calls in the following area may need the `{ capture: true }` option added due to a change in how React 17 now attaches event listeners t…
-
Example usecase: I need to generate schema with different naming conventions (e.g. replicate Prisma1/OpenCRUD convention).
I can write custom generation class, but there is no way to pas it to pare…