-
I would expect to be able to omit required fields that have a default value entirely, so that the database can fill them up for me if I choose not to specify them, but it looks like a field is only co…
-
Hi,
While using the library and attempting to make deep `where` filter requests, I noticed that you can't filter on deeper than 1 relation on a model. I looked at the template for the schema genera…
-
With this Prisma schema:
```prisma
model Customer {
uuid String @id @default(uuid())
firstName String @default("")
lastName String @default("")
…
-
## TLDR
After using Prisma-AppSync in various projects for about a year, I’ve decided it was time to rewrite Prisma-AppSync Client API from the ground (this will not affect the generated GraphQL sc…
-
During last the AWS Reinvent event they announced WebSockets support for API Gateway in combination with AWS Lambda. (See [example using the Serverless framework](https://serverless.com/blog/api-gatew…
-
Hello folks, please comment here if you or your org is using GraphQL Engine.
-
Migrated from: apollographql/apollo-client#424
and
Migrated from: apollographql/apollo-client#2460
and
https://github.com/apollographql/apollo-client/issues/307
Please vote with :+1:, if this f…
-
As seen here:
```prisma
model User {
uuid String @id @default(uuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
crmId Int?
email String …
-
Hello,
Thank you for this library, it saves a lot of time. I'm currently experimenting it with a custom prisma middleware and prisma casl. The middleware adds additional conditions in where clauses…
Loupi updated
2 years ago
-
Hi,
We are in the process of building search functionality on our app and we have noticed ( at least when using Mongo as the DB) that the queries are not case insensitive.
To get this to work w…