is it possible to use trpc without the app router?
Why not create queryClient and trpcClient outside of React?
Invalid hook call using useQuery
Is it possible to change the base path?
api.examples.com/trpc
- this should be the root, and trpc handles anything subsequent.
But querying this with a client, I get the error:
```
TRPCError: No procedure found on path "trpc/me.details"...when using utils.x.y.getData, is there a way to get when the query was fetch / last updated ?
"Failed to load response data: No data found for resource with given identifier" in the network tab

throw custom error
Automatically decode custom errors on client
Infer query type of `data`
data
?
```
const { isLoading, isError, error, data } =
trpc.patient.list.useQuery();...Streaming is not working
unstable_httpBatchStreamLink
in my app but the streaming is not working. The batching occurs, but nothing is streamed back from the server. It looks like the request still resolves after the slowest request has been sent. Can anyone help me troubleshoot this? I'm using a Fastify server.How to opt out of caching an API in trpc NEXT/SSR?

How to get pageParam from useInfiniteQuery()?
useInfiniteQuery
? My primary concern here is that I need to pass in a cursor to my procedure, and upon each successive query I need to update this cursor for the next call.
```TypeScript
const {
data: posts,...NextJS App Routers with tRPC: can't call query on server component
Using duplex stream as transport?
How to get line number in errors?
Auth in context is initially null leading to TRPCClientError: UNAUTHORIZED
Background tasks
edge runtime config router specific
[V11] BFF Monorepo setup
Is there any way to know which objects in a list got updated from a useQuery refetch ๐ค