cookies, headers and authentication
res.cookie("name", "value")
for example.
alternatively I can do res.set"set-cookie", "name=value")
.
how can I do something one of the two above with trpc?
...remove query
trpc hook pattern. This works, but I’m not convinced…
Catch TRPCError, ZoddError on the front-end

implicitly has type 'any' because it does not have a type annotation and is referenced directly

Why do some examples create PrismaClient in context, and others don’t
AppRouter type any?

How to call TRPC procedures directly, without creating a router and calling createCaller?
someProcedure({input, ctx})
We frequently call TRPC procedures from within other TRPC procedures....correct way to call TRPC inside a function

Cannot find namespace 'trpc'

use tRPC for RPC calls instead of gRPC
tRPC caching vs Vercel dynamic edge caching
Ignore Errors from batch calls
How can I use a fork of trpc-next?
trying to cache api routes

Prisma+TRPC monorepo
calling api endpoints from within a trpc api endpoint?
TRPC waiting until the query has completed
signIn
loop due to the data
not being there on the initial page render. But, I can't check if !guilds.data
, because sometimes it wont return anything, due to an invalid token. Which means there is no good way to identify when to force a signIn
for the user....