Having Issue With Context in App Directory Next.js

tRPC querying data via function not working
fetchSocialMediaData
is logging themeId
but, not response
, getting error as mentioned in the screenshot attached. Is there anything I missed from docs? Correct me wherever I am wrong.
```tsx
type SocialMediaData = {
id: string;...
Next.js app router + TRPC...how to set it up?
Note You can already use tRPC with app directory, by:>
- using@trpc/client
directly in components (both RSC and non-RSC) - use@trpc/next
for client components...
How do I setup App router + TRPC + Lucia Auth? (protected routes)
NEXT.JS / Serverless AWS
How do I set a context dynamically?
How to make LoaderAndError component which is type safe?
const { data, isLoading, isError } = trpc.settings.get.useQuery();
Now I have a LoaderAndErrorComponent like below
```tsx
import React from 'react'...TRPC vanilla client load failed when called on mobile browser
`createCaller` and RSC - with next-auth
useQuery always fetching when active on page

nextjs app router `fetchRequestHandler`'s createContext doesn't run.
"Unable to transform response from server" when 401 error returned from middleware (sometimes)

How do pass a 'blob' from frontend to backend?
fetch failed - error on npm start on production
Type return error when using mongoose.
useContext won't infer type from tRPC client

Forward client headers with createTRPCProxyClient & Server-Side Helpers
createTRPCNext
i had the option to tap into the context.req
object nextjs passed in, but I cant achieve the same with createTRPCProxyClient
.
For example below code fails authentication, cause cookies arent forwarded.
```ts
export const getServerSideProps: GetServerSideProps = async ctx => {...I have a websocket + REST project. Should I be using splitLink like this to combine WS and HTTP?
Nested procedures are separated by dots, is there a way to change that to `/`s instead ?
/api/trpc/post.byId
, is there a way to have it like /api/trpc/post/byId
?Is there a way to split a trpc api across multiple lambdas ?