Luca Steeb
Luca Steeb
@listepo I'm not sure, it would be probably helpful, but it is possible to do use bindings today. It's just a lot of work, and I don't have the capacity...
Do you have more information about the error "missing method queueFieldcompilerInvalidIfaceAssign"? Where does it come from, when does it happen? Would be great to add as much info as possible....
That's super weird.. I tried to reproduce your schema and your query but it compiles for me. Is there any chance you can maybe send the full schema (if you...
Thanks for sending the schema. It looks like the order doesn't match the expected one. If you check the arguments of `CreateOne`, you can see that the expected order is...
I'm glad that it works now. The order should actually be the same as in the schema (id comes first, then payload, then at the bottom queue, and then the...
To be honest, I'm not really sure what your question is. You can define both input prisma schema file: ``` go run github.com/steebchen/prisma-client-go generate --schema schema/generated/foo.prisma ``` and define the...
Ah gotcha. Yeah, I think your best bet is to do `go install github.com/steebchen/prisma-client-go@latest` once and just use the binary `prisma-client-go`. You should also be able to specify `prisma-client-go` in...
The `go/query-engine-darwin-arm64_gen.go` contains the [Prisma query engine](https://www.prisma.io/docs/concepts/components/prisma-engines/query-engine), you don't really have to care about that as it should just work. Once you do `go build` it is automatically included. If...
Timezones [open a whole big discussion](https://github.com/search?q=repo%3Aprisma%2Fprisma+timezone&type=issues) which I'm not sure I want to dig in at this time. My suggestion would be to run your Go app using UTC timezone...
Actually, to go into more detail about your question, you are right that the timezone information gets lost, as I believe it just saves the time in UTC right now,...