Results 133 issues of Matt Mueller

**Goal** We're able to fully use the DMMF in Go by wrapping or transforming the current DMMF. This will potentially allow us to propose meaningful changes to the DMMF structure...

kind/epic

**Problem** Right now we download or link the Rust binary as a side-car executable to the Go binary. I think many Go developers would prefer you get a single binary...

kind/feature

Right now you get a rather unusual error if you have `provider = "prisma-client-js"`. Tried generating a new Go client: ```sh $ go run github.com/prisma/prisma-client-go generate info: 2021/04/07 15:25:31 prisma...

bug/2-confirmed
kind/bug

Right now there's a lot of links, which is nice as a reference to back to, but initially we want people to see our Quickstart. Let's optimize for this workflow.

kind/improvement

**Problem** Given the following: ```go client.User.FindOne(params iUserEqualsParamsUnique) ``` It's not clear to me what `params` should be. I first tried ```go client.User.FindOne(client.User.Equal(...)) ``` Then I tried ```go client.User.FindOne(db.User.Equal(...)) ``` Finally...

kind/improvement

**Problem** People will ask performance related questions. Having a way to answer these questions quickly would be helpful for both the user and support. **Next Steps** - Collaborate with Typescript...

kind/feature

Currently the columns in the Raw API are not type-safe ```go client. Raw("SELECT * FROM User WHERE id = ? AND email = ?", "id2", "email2"). Exec(ctx, &actual) ``` It'd...

kind/feature

Hey folks, First of all, I love what you guys are doing here and I think the approach to start as a single server and provide a smooth transition to...

question
documentation

Short info header: - GFX version: master - OS: OSX - GPU: Metal Followed [example instructions](https://github.com/gfx-rs/gfx#example), got stuck on building for metal. ``` examples master → cargo run --bin quad...

module: user
type: documentation
value: low

Hey there – I'd like to use v8go for server-side Javascript rendering, but I'm not sure how to use v8go safely and effectively inside an HTTP server. I've created a...