Flavian Desverne
Flavian Desverne
- [ ] React - [x] React Native - [ ] Prisma - [ ] GraphQL Bindings
## Description Historically, `null` was accepted for every Prisma Client args (pagination, filters etc..) because GraphQL does accept `null | undefined` for nullable fields. Since a couple of versions, the...
## Description For security reasons, we removed the ability to expose all fields from a model by using `t.prismaFields(['*'])`. However, we still think that there might be a lot of...
## Description When scaffolding resolvers, there's no indication at all regarding which file/resolvers were updated. Users have to dig themselves into the files to find out. ## Proposal **Step 1**:...
Current validation implementation is sloppy. There are better patterns that could be used to implement such a process.
## Description Currently, only `interface` and `type` are supported for defining models (on ts/flow) It would be nice to be able to define models as `class` as well
In prisma-ecommerce, I have several models that I need to be soft-deleted only, such as `Product`s so that `Order`s remains intact. I see two ways of achieving this: - Either...
Prevent sorting from being applied when trying to sort n-to-one/many fields. An exception should be thrown to warn the user that he can't do that. A default sorting should be...
See [here](https://github.com/Weakky/ra-data-opencrud/blob/master/context.md#5-challenges-and-limitations-with-prisma) and buildVariables.js::buildUpdateVariables();