BeBoRE
BeBoRE
TtRPC
Created by seven on 4/2/2025 in #❓-help
can i send data from client to server in subscriptions
8 replies
TtRPC
Created by seven on 4/2/2025 in #❓-help
can i send data from client to server in subscriptions
8 replies
TtRPC
Created by seven on 4/2/2025 in #❓-help
can i send data from client to server in subscriptions
By using the wsLink to connect to your tRPC backend you can both send and receive information through that WS connection. You request and listen for data through queries and subscriptions, you send data through the use of mutations.
8 replies
TtRPC
Created by seven on 4/2/2025 in #❓-help
can i send data from client to server in subscriptions
No they are only for listening, mutations are for sending mutations. The wsLink is bidirectional.
8 replies
TtRPC
Created by ggascoigne on 3/31/2025 in #❓-help
Types question
4 replies
TtRPC
Created by Steve A on 3/21/2025 in #❓-help
Doubled subscriptions in React with useSubscription
What does it say in your devtools? If you are using SSR the subscription also runs I believe, don’t know if that’s fixed.
3 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
You are using the correct TS version?
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
This is also very freaky
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Yeah this is very strange, idk what could cause this
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Very weird that it thinks that data is a function
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Hmm, never used that, don't know if that makes a difference
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Aren't you using the wrong trpc? You should be using the one returned from the useTRPC hook. https://trpc.io/blog/introducing-tanstack-react-query-client#:~:text=const%20trpc%20%3D%20useTRPC()%3B
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
I believe the problem is that you are defining your Context type in the file where you are consuming the appRouter, while your Context defines your appRouter. This makes the two dependent on each other. If you define your createContext where you are initiating your tRPC you probably won't have the type issues.
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
You don't use the Context type you are exporting?
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Makes me believe the type problem is caused by a circular dependency
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Can I ask you why you are exporting the return type of you createContext in your adapter?
36 replies
TtRPC
Created by Nomad on 3/13/2025 in #❓-help
Weird data type when extending context in fetch adapter
Did it work before you did the context stuff, because that all looks good. Have you read the FAQ? https://trpc.io/docs/faq#:~:text=Make%20sure%20you%20have,as%20your%20package.json
36 replies
TtRPC
Created by Andrés on 1/7/2025 in #❓-help
Problem using EventEmitters [Weird behavior]
I use redis for my project https://github.com/bebore/ei-noah-bot but that's quite complex, I recommend just following the redis package docs. It's not much different from the event emitter other than that you need to (de)serialize the input and output.
16 replies
TtRPC
Created by Andrés on 1/7/2025 in #❓-help
Problem using EventEmitters [Weird behavior]
Or use the new httpSubscriptionLink
16 replies
TtRPC
Created by Andrés on 1/7/2025 in #❓-help
Problem using EventEmitters [Weird behavior]
You already found the solution, redis is the solution here
16 replies