Hey guys, i am new to Prisma. trying to understand...
# orm-help
s
Hey guys, i am new to Prisma. trying to understand how to set it up and i am kinda confused. So i want to run a local Prisma server instead of relying on Prisma Cloud. i have my local Prisma API running in Docker exposed on port 4466 and its working fine. Now, as i understand, you have to have another GraphQL API which would be the "main" one, which would query the Prisma API via graphql-bindings in the resolvers. I used graphql cli to generate a react-fullstack-graphql boilerplate. That boilerplate comes with a connection set up to Prisma Cloud. How would i change it to use my local Prisma API? Hope someone can point me in the right direction.
j
You change the endpoint. From
whatever.cloud.url
to
<http://localhost:4455>
🙂
This should be where you set up your Prisma binding.