Using HTTP:POST for `query`?
query
with a large amount of JSON data. However, since we use HTTP:GET
under-the-hood for queries ( including batching ), I run into header length limits. Since we deploy to AWS, we are also restricted to the length limit imposed by Amazon ALB. Due to this, I have the following questions :
- Is it currently possible to use HTTP:POST for query
and mutation
? ...re validation on static site next js 13
Transformers not transforming data (trpc-sveltekit)
client.ts
file that looks like this:
```ts
import superjson from 'superjson';
import { type TRPCClientInit, createTRPCClient } from 'trpc-sveltekit';...Issue Inferring Type on Frontend with ElectroDB Query Return Statement
useQuery()
response is of type any
...
Wrong JSON response when deployed

External calls
Need help identifying the generic client side type of procedures
Is there a way to use versioning for procedures?
createSSGHelpers
TRPC undefined when exporting
TRPC retries with new app dir
let { data: name, isLoading, isFetching, isError, error } = trpc.home.home.useQuery();
let { data: name, isLoading, isFetching, isError, error } = trpc.home.home.useQuery();
opts.input is of type undifined
Server-side error tracing with Datadog
dd-trace-js
.
We’re using Datadog and because tRPC handles all errors internally, the tracer doesn’t actually get access to the stack trace. Likewise, it stops creating spans before hitting the tRPC route and only resumes if any library underneath is instrumented....Configuration help
I'm curious to know if anyone has any suggestions on how I can track the replies to the emails
tRPC subscription : Access to socket ID from subscription
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)