prisma-client-py
prisma-client-py copied to clipboard
Prisma Client Python is an auto-generated and fully type-safe database client designed for ease of use
## Problem Currently, the downloaded binaries are placed in /tmp/ on Linux. However, /tmp/ directory is cleared on boot everytime. ## Suggested solution Placing the binaries in /var/tmp/ on Linux....
## Problem Right now we can't use providers that have been added recently : Cockroachdb & Planetscale. Any file generation attempt returns: ``` Error: Get config: Schema Parsing P1012 error:...
## Change Summary This PR completely refactors how the Prisma CLI is downloaded / installed / called. We now download Node itself at runtime and use that to install the...
The examples to search comments were not working as expected, so I fixed them ## Change Summary I fixed examples to read comments in the `getting started` documentation ## Checklist...
## Bug description The mypy plugin appears to be broken: https://github.com/RobertCraigie/prisma-client-py/runs/7595314605?check_suite_focus=true
## Change Summary In case the outcome of https://github.com/RobertCraigie/prisma-client-py/issues/293 is to officially support `ANY` queries, this PR attempts attempts to add support for it. Unfortunately I was unable to support...
Bumps [mkdocs](https://github.com/mkdocs/mkdocs) from 1.3.0 to 1.3.1. Release notes Sourced from mkdocs's releases. 1.3.1 Pin Python-Markdown version to <3.4, thus excluding its latest release that breaks too many external extensions (#2893)...
## Problem Prisma recently changed how raw queries work internally, values are now returned alongside meta information, for example: ```json { "count": {"prisma__type": "bigint", "prisma__value": "1"} } ``` ## Suggested...
## Bug description When doing raw queries with `?` placeholders for variable substitution, the `str ` passed as value contains `""` from code. This makes code formatters like `black` useless,...
## Problem Sometimes it might be useful to access the DMMF for features such as triple-slash comments. ## Suggested solution We should store the DMMF in JSON form in the...