BeBoRE
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
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
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
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
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