Hi Everyone, I have to do some maintenance in a pr...
# orm-help
g
Hi Everyone, I have to do some maintenance in a project created with prisma 1 I guess (
"prisma-binding": "^2.1.1" on the project package.json
) and I only have experience with prisma 2 using prisma cloud, which does not include that step. I need to figure out what is the service that was created by the previous dev and hosted on heroku, this service is the endpoint for the Prisma instance of prisma-binding class as below:
Copy code
const prisma = new Prisma({
    typeDefs: 'src/generated/prisma.graphql',
    endpoint: endpoint,
    secret: secret,
    fragmentReplacements
})
Since I do not have access to whatever was created and deployed to the endpoint consumed above, I wonder if this is possibly something that will need to be altered as I create other queries mutations and everything else, or if it's just some sort of middleware between prisma and the postgres DB The url is formatted as:
<https://projetc-802bb3764d.herokuapp.com/project/dev>
Thanks!