Serving clients in another repository?
How to access hooks while initializating react query client for nextJS?
queryCache
to handle errors or display toastr
, etc.
The way trpc initialize the react query client with nextJS using the createTRPCNext
doesn't give the option to access/call any hooks.
There is any other way to initialize trpc on NextJS that happens in the react component lifecycle as it would happen if we'are using only react query?...
How to execute mutation outside of react context?
window
in _app.tsx
```...When not to use tRPC?
Bi directional infinite query example with prisma
hasPreviousPages
gets blown away when I go to the next page. Anyone have an idea what might be happening?Websockets not sending data

Query keys
Possible to use tRPC proxy client inside Edge Runtime?
Is inferRouterInputs & inferRouterOutputs exported from trpc-server?

v10 migration using codemod
NextJS 13 compability.
SSR and loading indicators - I don't get it
utils/trcp.ts
sets ssr: true
, but the pages/index.tsx
example uses
```
const hello = trpc.hello.useQuery({ text: 'client' });
if (!hello.data) {...Prefetch forEach
Making input to trpc route from Prisma generated type
NextJs middleware broken by tRPC
/api/trpc
call and there is no session it tries to redirect to the login page breaking the redirect and trpc itself. Is there a way to get this working so redirect would actually work as expected?
How to infer the output of a mutation? The current methods appear to be depreciated.

Trouble inferring the type of a very simple structure of nested routers

calling trpc endpoints from vanilla nextJs api routes
Multiple React providers
Mutation type issue
const updateColumn = trpc.project.update.useMutation();
updateColumn.mutate({ colId: list.id, cards: list.cards })
const updateColumn = trpc.project.update.useMutation();
updateColumn.mutate({ colId: list.id, cards: list.cards })
