Matt Mueller
Matt Mueller
**update**, ahh this is a big problem though: ```html HaxOr console.log(window.__nightmare) ``` ```js const Nightmare = require('nightmare') const nightmare = Nightmare({ show: true }) nightmare.on('console', console.log) nightmare .goto('http://localhost:5000') .catch(e =>...
The workaround today is to pre-process your queries, for example: ```ts const results = await prisma.post.findMany({ where: { body: { search: "second post".split(" ").join(" & "), }, }, }); ```
Thanks for this proposal! To understand better why you're reaching for the repository pattern, do you mind sharing what you need to do in your RESTful API controllers that's leading...
Would [Support Enum in SQLite (via polyfill/emulation)](https://github.com/prisma/prisma/issues/2219) solve the core issue here or would there be some other advantage to using a table?
Hey there. Unfortunately no plans yet because not all natively databases support this and we're not quite at the stage where we can make fine-grain adjustments to our APIs depending...
Next Steps: - @williamluke4 works with @pimeys to initialize tracing in TS client and connect to Rust tracing system.
Hey all, I wanted to share that we're shipping Prisma Client tracing in our upcoming 4.2.0 release next Tuesday! Here's an early sneak peak: https://deploy-preview-3408--prisma2-docs.netlify.app/docs/concepts/components/prisma-client/opentelemetry-tracing. It's actually already available in...
Hey folks, we came up with some ideas on how to solve this and would love your feedback. Do you have any preferences? Would you solve this in a different...
Thanks for the feedback! @cudba what's your file structure look like right now for the two clients? Is it something like the following? ``` ├── mysql │ ├── models │...
We just wrote some documentation on how to add computed fields with Prisma: https://www.prisma.io/docs/concepts/components/prisma-client/computed-fields We do plan to implement this feature into the Prisma Client eventually, but this is meant...