Flavian Desverne
Flavian Desverne
## Description Yoga could provide integrated helpers or best practices to handle authentication. [Passport.js](https://medium.com/@mjw56/graphql-authentication-with-passport-d75c08d5fbdc) seems like a great choice because of its number of supported services/authentication strategies. Whether we use...
## Description `nexus` makes it sometimes hard to reason about the relations in your GraphQL schema. To fix that problem, we could generate comments on top of your `objectType` and...
## Description We should create/think about useful/concrete examples to onboard new people more easily. ## Ideas - Authentication & Authorization example - ...
## Description In order to remove friction in the development workflow, we could introduce a way to execute commands without having to kill the yoga process, run the command, and...
## Description Since yoga will mostly be a wrapper around several existing libraries, I believe we're left with two ways of re-exposing the configurations: - Either we re-expose the configuration...
## Motivation Provide a simple way to deploy a GraphQL Server on different services. ## Goal Support a `yoga build --target lambda` build step (or other targets) The `build --target`...
## TODO BEFORE MERGING - [ ] Merge [Quaint PR](https://github.com/prisma/quaint/pull/391) - [ ] Update Quaint ## Overview fixes https://github.com/prisma/prisma/issues/14664 - Supports referencing fields in (not unique) filters (meaning in `*WhereInput`s)...
## Overview fixes https://github.com/prisma/prisma/issues/14336
## Overview All json filters are broken when using NOT in combination with: - `string_contains` - `string_starts_with` - `string_ends_with` - `array_contains` - `array_starts_with` - `array_ends_with` - `gt`/`gte`/`lt`/`lte` Here's an example:...
## Overview Consider an empty scalar list. Try the following filter: ``` { NOT: { isEmpty: false } } ``` This currently returns false for an empty list. However, it...