Forward NextJs Request to TRPC Server

ERROR TypeError: queryClient.getMutationDefaults is not a function (it is undefined)
Guides on authoring own client like `@trpc/react`
useQuery
in @trpc/react
? I'm asking this because I plan to create something for Svelte + Tanstack Svelte Query but looking at the source code for v11, the types are scattered all around and i cannot seem to follow. Also, there is
1. createRecursiveProxy
2. createTRPCClientProxy
3. createTRPCFlatProxy...trpc useQuery/useMutation not inferring return type of prisma query

I commented my query out, but i still notice request are still been made. this is what my code look
useQuery `onSuccess` callback depreciated
onSuccess
callback in useQuery has been depreciated. What should I be using instead?
```ts
This callback will fire any time the query successfully fetches new data.
@deprecated — This callback will be removed in the next major version....Examples-next-formdata
how are you meant to set up client side queries?
onSuccess
stuff either.
```tsx
trpc.authCallback.useQuery(undefined, {
onSuccess: ({success}) => {...
tRPC and playing audio files on the frontend
How to query with async/await
Prefetch | useSuspenseQuery | Error: redacted | updateDehydratedSuspenseComponent
Error: redacted
in the server console as shown in the print...
tRPC & Next.js confused about error
page.tsx
file and I still get the useState error? I'm not sure how to set up layout.tsx
too... That's probably what I'm doing wrong but I don't know where to find out what is wrong
layout.tsx
```tsx
import type { Metadata } from "next";...
Next's app router is slow when using server components, how to optimize?
CORS Preflight did not succeed

"Find all references" in VSCode not working
Bug? useSuspenseQuery -> isFetching doesn't change
useSuspenseQuery
then new data fetch but test2.isFetching
doesn't update at all.
When I do test
function that invalidate query then test2.isFetching
is updating to true while data is fetching. ...Questions around trpc with next.js app router
withTRPC<AppRouter>
still required? The docs show it: https://trpc.io/docs/v9/nextjs#5-configure-_apptsx but it looks like the example is around the pages router and not app router.
I am using createTRPCNext<AppRouter>
am I meant to use both createTRPCNext
as well as withTRPC
?
...Correct tRPC implementation (NextJS AppDir)