polioan
Explore posts from serversTTCTheo's Typesafe Cult
•Created by polioan on 6/27/2023 in #questions
How can I check if my package are edge ready?
?
4 replies
TTCTheo's Typesafe Cult
•Created by polioan on 5/15/2023 in #questions
app crashing while using pm2 with prisma
12 replies
TTCTheo's Typesafe Cult
•Created by polioan on 5/14/2023 in #questions
Can I use both raw and react tRPC client?
// Raw client
const post = await trpc.post.byId.query({ id: "1" })
const addPost = await trpc.post.add.mutate({ title: "hello world" })
// React
const postQuery = trpc.post.byId.useQuery({ id: "1" })
const addPostMutation = trpc.post.add.useMutation()
4 replies