Type 'DecorateQueryProcedure<{ input: string; output: { id: string; name: string; }; transformer: fa
Should `.queryFilter()` not take a partial arg?
.invalidate(partialObject)
to qc.invalidateQueries(trpc.path.queryFilter(partialObject))
doesn't work, since queryFilter
type isn't partialled. Is this correct behavior? I would imagine the filter could be anything
Really like this integration update btw 🙂...skipToken combined with the new tanstack query options
different transformers for different routers
json
field in it, and TS types are mismatching (TS types assume no wrappers will be there)super quick question about prefetching
prefetch
to fetch data on the server to ensure that both queries are running at the same time? From the looks of it trpc handles this automatically so it is unneeded?
await Promise.all([api.guild.get.prefetch({ guildId }), api.application.getList.prefetch({ guildId })]);
await Promise.all([api.guild.get.prefetch({ guildId }), api.application.getList.prefetch({ guildId })]);
TRPC not writing to QueryCache?
Query via a non-connected wsLink never times out despite AbortSignal
Where did useUtils go?
useUtils
here and there to do fetches from components like ag-grid which requires a data source
It looks something like this
```js...get state of streaming response
How can I break this loop when the client disconnects?
Early return for certain input parameter for queryFn
Upgrading tRPC v10 to v11 in NextJS 15.0.1
pnpm
.
Installation is running smoothly, but when i run pnpm build
i get
```...
best practice for invalidating protected queries upon profile switch
Can I use tRPC on multiple platforms?
Missing Module in TRPC Migrate
correct way to handle errors run time errors

Nextjs Proxy an exteral TRPC api via pages/api/trpc/[trpc].ts ?
http-proxy-middleware
which works but it break sometime which is a bit difficult to debug. wondering if there is an example or some doucmentation around this use case ?...Redirecting
invalidate query
How to let an LLM "use" a tRPC api?