less than 1 minute read

오늘 배운 것


1. prisma-binding github 설명

Here is how it works:

Create your Prisma service by defining data model Download generated database schema definition prisma.graphql (contains the full CRUD API) Define your application schema, typically called app.graphql Instantiate Prisma with information about your Prisma service (such as its endpoint and the path to the database schema definition) Implement the resolvers for your application schema by delegating to the underlying Prisma service using the generated delegate resolver functions

아무래도 먼저 성공적으로 deploy를 해야 할 것 같다. 그리고 Prisma 오브젝트는 로컬이 아닌 원격 prisma 서비스를 써야 하는듯.

dep

ref


Comments