Luca Steeb
Luca Steeb
As opposed to setting/overriding it via an env var something like ```go client := db.NewClient(db.WithURL("...")) ``` related: #166 Internal notes: Set this QE flag ``` --overwrite-datasources Base64 encoded datasource urls,...
Defining env vars in the schema is only possible for fields which are known to the Prisma CLI, which means Go-specific options like `package` can only be hardcoded; using an...
Triple-slash comments should land in the generated Go code. ```prisma model User { /// The user's email address email String } ``` should generate ```go type User struct { //...
It would be great if one could provide a custom http.Client to `NewClient()`. Probably via variadic args.
This requires all query relations to be taken from the dmmf. For example, `some`, `many`, `none`, and so on.
Like AND, OR, NOT