xpru67X
tRPC2y ago
1 reply
xpru67

Server freezes when doing mutations...

I have the exact same issue as mentioned in this post: https://discord-questions.trpc.io/m/1176971701075058690

It doesn't seem to be solved and is a very recent bug, any news regarding this? My entire application is breaking because of this...
I have an issue with a simple mutation procedure:

`getPublicUser: publicProcedure
.input(z.object({
walletAddress: z.string()
}))
.mutation(async ({ ctx, input }) => {
console.log('ctx.prisma: ', ctx.prisma)
try {
const user = await ctx.prisma.users.findUnique({
where: {
walletAddress:...
trpc mutation call stuck - tRPC
Was this page helpful?