`FST_ERR_REP_ALREADY_SENT` when using `res.send()`
Passing generic inside tRPC query
Prefetch and useQuery usage on tRPC 11 and NextJS 15
useSuspenseQuery
but hydrated data isn't there if I use useQuery
:
https://trpc.io/docs/client/react/server-components
Keeping everything else the same in the exampleSo in the last section instead of this:...error handling
"Invalid Hook Call" with minimal example
Build fails locally but deploys on vercel
pnpm build
in the root of my monorepo the build fails with the following error
you can take a look at my code here: https://github.com/777advait/t3-turborepo...
How to reset the cache without triggering refetches for none active queries ?
unstable_httpBatchStreamLink and formData -> not compatible
Error: Error serializing `.trpcState.json.queries[3].promise` returned from `getStaticProps`

Deprecated createCaller alternative?
GET with Postman, impossible?
trpc 11 superjson transformer not working with unstable_httpBatchStreamLink
httpBatchLink
for quite a while but wanted to swap to unstable_httpBatchStreamLink
. However, I noticed that any procedure returning a Map
isn't being converted correctly. It is only an issue when using unstable_httpBatchStreamLink
. Is this a known issue?Throw NOT_FOUND on nullish
getFoo: protectedProcedure.query(({ input }) => db.foo.findFirst({ id: input.id })
This example uses Drizzle, which doesn't have a findFirstOrThrow
convenience function.
Since i want to throw TRPCError
when the DB record couldn't be found, i'd have to write this code everywhere:```ts
getFoo: protectedProcedure.query(async ({ input }) => {...Using tRPC v11 within a chrome extension (WXT or Plasmo)
TRPC function invocation timeout

v10 to v11 - resolveHTTPRequest replacement resolveRequest doesn't exist
Next-auth session error
await auth()
in tRPC context got error Error [TRPCClientError]:
headers was called outside a request scope.
```typescript
import { PrismaClient } from "@prisma/client";...How can i check if an error is a TRPC Error in the browser?
error.message // NOT_FOUND (throwing this intentionally - i'd like to build a react error boundary that has specific handling for TRPC Errors like NOT_FOUND)
Object.getPrototypeOf(error) // default "Error" object/class
error instanceof TRPCClientError // false. this would have been my best bet.
error.message // NOT_FOUND (throwing this intentionally - i'd like to build a react error boundary that has specific handling for TRPC Errors like NOT_FOUND)
Object.getPrototypeOf(error) // default "Error" object/class
error instanceof TRPCClientError // false. this would have been my best bet.
Has anyone got Tanstack Start with tRPC working?