Flavian Desverne
Flavian Desverne
## Overview Let’s call `string_list` the following value: `["a", "b"]`. Now try the following filter: `{ NOT: { string_list: { hasEvery: ["a", "c"] } } }` - Postgres will return...
## Overview implements https://github.com/prisma/prisma-engines/issues/3085
## Description
## Overview The current API for `execute_raw` is very centric around SQL databases and expect the number of affected rows to be returned. Unlike SQL databases, MongoDB doesn't have a...
## Overview Needed for https://github.com/prisma/prisma-engines/pull/3088 **BREAKING**: - Removed begins_with, not_begins_with - Removed ends_into, not_ends_into - `.like` and `.not_like` now only renders ` LIKE `. The consequence is: - `.like` should...
## Overview Since we added MySQL8 and MariaDB to the tested databases (https://github.com/prisma/quaint/pull/315), a couple of tests are now failing. Namely: - [ ] `newdecimal_conversion_is_handled_correctly` - [ ] `filtering_by_json_values_does_not_work_but_does_not_crash` -...
## Description Second time that I use dripip to release a stable and that the changelog is not posted. Here's the error: ``` Error: Failed to publish changelog RequestError [HttpError]:...
## Motivation/Use-cases If you want to model an object that can accept anything as value, you're tempted to use one of the following approach: ```ts const myObject: { [props: string]:...
## Overview This PR is still WIP. If someone takes over this PR, please have a look at [this document](https://www.notion.so/prismaio/Querying-unique-composite-indices-365d16d6d75c4f6cb0995a7d21844b39#e34bc8c20be046b588fcaeced9bb911d ) first. Things left to be done: - Write tests...
## Description One very appreciated feature is the current `t.prismaType` property (documented here: https://nexus.js.org/docs/database-access-with-prisma#tprismatype). That feature is not possible anymore in the nexus-prisma v2, but we definitely want to bring...