Luca Steeb
Luca Steeb
What do you think of this: https://prisma-compat.vercel.app/ It could include other clients as well: https://github.com/steebchen/prisma-compat
@valerii15298 Thanks, appreciate your words. Feel free to join the [Discord Community](https://goprisma.org/docs/community) to chat in depth. Regarding the state of the library, you might also give https://github.com/steebchen/prisma-client-go/issues/860 if you are...
It needs work from the core Prisma team, as it currently only works with JS projects unfortunately. I created [an issue in the studio repo](https://github.com/prisma/studio/issues/1176), feel free to upvote it.
Thanks for the report. The reason %q is used internally is because the Prisma query engine stringifies JSON. However, this should obviously not happen in the marshal func for the...
It's not possible yet in the Go client. Can you please describe why you want this feature? Is there a big field which you want to exclude for performance? also...
Good point! I'll put this into the 'soon' list, it would be indeed cool if specific fields could be ignored. However, note that specifically excluding fields might a bit dangerous...
@Chalwe19 Can you please create a new discussion and elaborate on your problem? Thanks!
@pikanezi Not sure what you mean by "have to use FindMany". Using structs is indeed not ideal I'm currently working on a few Go client things, feel free to sponsor...
Regarding the implementation, it would most likely implementing [select](https://github.com/steebchen/prisma-client-go/issues/346) instead of implementing an exclude function (similar to what the **JS client does**).
That's an interesting suggestion. Do you actually have the need in your app to use this? The reason most of the methods are private is that most users don't need...