Nick
Nick
TtRPC
Created by dylan42432 on 4/19/2025 in #❓-help
bigint
do you have a transformer set up?
2 replies
TtRPC
Created by jmac on 3/25/2025 in #❓-help
tRPC v11 FileLike
Thanks, could you pop this in a github issue? We can have a look then
7 replies
TtRPC
Created by jmac on 3/25/2025 in #❓-help
tRPC v11 FileLike
Without a reproduction (can just be a link to a random codebase on github or stackblitz) it’s hard to say if it’s your setup or our fault though
7 replies
TtRPC
Created by jmac on 3/25/2025 in #❓-help
tRPC v11 FileLike
Ahh we’re familiar with this type of error, it does pop up occasionally
7 replies
TtRPC
Created by datagutt on 2/24/2025 in #❓-help
skipToken combined with the new tanstack query options
This particular issue should be fixed, if you can reproduce a bug though please open a github issue with an example 🙂
10 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Yes there is a minimal-content-types example in the repo
23 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Hi all, I'm working on updating the docs for this, but hopefully this fragment helps in the mean-time:
import {
httpBatchLink,
httpLink,
isNonJsonSerializable,
splitLink,
} from '@trpc/client';

splitLink({
condition: (op) => isNonJsonSerializable(op.input),
true: httpLink({
url,
}),
false: httpBatchLink({
url,
}),
})
import {
httpBatchLink,
httpLink,
isNonJsonSerializable,
splitLink,
} from '@trpc/client';

splitLink({
condition: (op) => isNonJsonSerializable(op.input),
true: httpLink({
url,
}),
false: httpBatchLink({
url,
}),
})
23 replies
TtRPC
Created by Conviley on 4/9/2025 in #❓-help
Blob as response tRPC v.11
It's one we'd like to do in the future though
4 replies
TtRPC
Created by Conviley on 4/9/2025 in #❓-help
Blob as response tRPC v.11
Hi there, it's not currently possible to return blobs, these docs are referring to blobs as inputs
4 replies
TtRPC
Created by arashi-dev on 3/29/2025 in #❓-help
swagger to trpc-like interface generator?
Some can even generate react query hooks
4 replies
TtRPC
Created by arashi-dev on 3/29/2025 in #❓-help
swagger to trpc-like interface generator?
There are loads of tools out there
4 replies
TtRPC
Created by arashi-dev on 3/29/2025 in #❓-help
swagger to trpc-like interface generator?
You want any kind of OpenAPI client codegen
4 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
What does your code look like when submitting the data?
23 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
What link setup are you using?
23 replies
TtRPC
Created by Arxk on 3/27/2025 in #❓-help
Sending FormData does not work at all
Your setup must not be exactly the same then
23 replies
TtRPC
Created by Mika on 3/27/2025 in #❓-help
v11 crash, bug in trpc?
Are you able to put together a minimal repro and open an issue?
5 replies
TtRPC
Created by avvo on 3/22/2025 in #❓-help
tRPC Monorepo w/ Package Path Aliases
Takes a bit of configuration typically but yeah you can do it
8 replies
TtRPC
Created by avvo on 3/22/2025 in #❓-help
tRPC Monorepo w/ Package Path Aliases
I use absolute imports all the time at work
8 replies
TtRPC
Created by avvo on 3/22/2025 in #❓-help
tRPC Monorepo w/ Package Path Aliases
Path aliases are a build system question, tRPC doesn’t care so long as your typescript and bundler setup is correct
8 replies
TtRPC
Created by neoney on 3/14/2025 in #❓-help
state change not triggering refetch
But what about the setter for that state?
6 replies