Hi,
I am trying to setup Prisma with GraphQL yoga, I wanted to connect to a local DB instance. I am using planetscale DB which is MYSQL, that is running locally on port 3306 with root as username and no password. When I run prisma init it asks me for the db host, db port, db user, and dp password which I leave blank. But it never asks me for my db name, and then it just says Done. I was able to get this working with Prisma Client and planet scale in a next js app. But from my understanding to get this working with graphQL yoga I need Prisma from prisma-binding, because I am going to do subscriptions. and that requires a endpoint which I thought prisma init would give me once I connected to my DB.
Any thoughts on what I am doing wrong.
Thanks ahead of time.