fastify/sessions cant implement my own session store using Prisma
I use typescript. I want to implement a session based authentication system. So, Ive decided to use fastify/session. And Prisma for storing the sessions. My problem is when I request to “/” path (which you can see the below) it doesnt return anything. My postman shows only “Sending request…” and nothing is returning. But database creates the session. And in console I can see the sessionId (which i printed in console.) and its matches with the sessionId in database. What can I do to solve this?