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?
issue with compiling/building websocket server
trpc useError hook?
useError
so i can catch all of the errors for each query, in one variable?
or is the best way using the error
property on each of the useQuery invocations?
Currently, if I want to display an error I'd have to make 3 separate variables and parse each of those in the if statement if error
at the bottom.
```ts...What is the substitution for queryKey in useQuery?
How can we get the query key on the server?
getQueryKey
function doesn't seem to work with the server API provided by createHydrationHelpers
...How to make prefetching/RSC suspense work with auth?
Route not found when using Fastify adapter
url
was missing the /trpc
prefix set in the server.Modifying input in a middleware
How do *you* structure the tRPC router when dealing with isolated components?
/[locale]/(dashboard)/categories/posts/comments/list-component/my-procedure.ts
) has a procedure.
Everything inside the folder /[locale]/(dashboard)/categories/posts/comments/list-component
is a single react component (tree). I.e. I don't share this component anywhere else. But it still has a query procedure to fetch the data we need for it. ...Can we bundle WS TRPC Server?
How to handle consistency for client-side only APIs?
Does server side helper's fetch also fill the cache like prefetch?
fetch
also add the query to the cache, which I then dehydrate and send to the client?
I need to access data both server side and client side...SSR with NextJs app directory
Cannot read __untypedClient from undefined error when try to update to latest 11.rc### versions