-
I want to generate a single graphql file from prisma instead of a lot of separate files/folders just like prisma 1. So there are two ways of doing this,
First way: import own types and use inside m…
-
I have a list of posts and each post has multiple comments. I was counting the total comments that each post has. Using `selectRelationCount` previewFeatures, its count number is correct but it shows …
-
## Bug description
Consider the simplified schema:
```prisma
model Calendar {
id String @id @default(cuid())
events CalendarEvent[]
}
…
-
Hi,
Thanks for the lib!
Is it possible to generate nexus input types as a file instead of runtime generation? We want to customize the default input types. It would be great if the generator gener…
-
hello, thanks for the great library.
I am currently using prisma 2.21.2 along with paljs 3.0.6. I have enabled the preview feature "selectRelationCount" but the select plugin doesn't seem to recogniz…
-
### Bug description
Everything works fine in 2.23.0
I am using [nx](github.com/nrwl/nx) with [next](https://github.com/vercel/next.js) and hosting on [vercel](https://vercel.com)
### How to r…
-
Howdy! Do you have a changelog for v3? Just curious what the breaking changes are before I uptake the version. Thanks!
-
When returning to the previous screen due to save/cancel in update view, it would be better to use back rather than push. The previous query is maintained only when back is used. (window.history.back(…
-
I have the following code in resolver.
"prisma": "2.21.2",
"@paljs/plugins": "^3.0.1",
```javascript
queryField("shops", {
type: list("Shop"),
async resolve(_parent, _args, { prisma }, i…
-
How do you deep filter the returned select?
Prisma Models
```prisma
model User {
id String @id @default(cuid())
email String
profile Profile?
}
model Profile {
…