Barnaby Keene
Barnaby Keene
Hey! I'm converting some values from decimals to nullable decimals so we can distinguish between zero and unset. I've noticed some odd behaviour in the way records are inserted. The...
I updated the generator to get the #681 fix, but it seems to have broken [this specific set of filters](https://github.com/openmultiplayer/web/blob/master/server/src/resources/forum/post/db.go#L64-L73) for the query. I narrowed the issue down to this...
This may be a Prisma query engine issue more than a Go client issue, but maybe it can be resolved in the Go side if there's a flag for controlling...
Hey! Hit a use-case that doesn't seem to be covered by the API. So I have a post model with a `deletedAt` nullable date, for soft-delete/restore capabilities. My query originally...
- [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Current...
It seems SetOutput reads the entire stream then SetResult will error with `unexpected end of JSON input` Would be useful to allow these together. Use case: We use resty in...
Hey, I've got this running on a big TV for some team dashboards, music, meetings, etc. but our TV doesn't have 3.5mm output. The Raspberry pi does have a 3.5mm...
- [x] I have looked at the documentation [here](https://pkg.go.dev/github.com/go-playground/validator/v10#section-documentation) first? - [x] I have looked at the examples provided that may showcase my question [here](/_examples)? ### Package version eg. v9,...
I use Zap for basically every service I write, it's great! There's one issue I have though. Since I use pkg/errors, each error satisfies the fmt.Formatter interface and thus, every...
Quite frequently, I want to do something like `lo.Map(slice, Transformer)` but `Transformer` returns `(R, error)`. I can write a function literal and handle the error, but it's still not ergonomic...