Tracy
12/17/2018, 3:03 PMnikolasburk
Is it this article (https://www.prisma.io/docs/1.22/get-started/03-build-graphql-servers-with-prisma-JAVASCRIPT-e001/) and then I need to manually write all of the resolvers?Yep, that's the exactly how you do it 🙂 You first define an operation in your GraphQL schema (schema.graphql) and then add the corresponding resolver function which access the database through the generated Prisma client API.
nikolasburk
Tracy
12/17/2018, 3:19 PMnikolasburk
graphqlgen
to generate resolver signatures and typings: https://www.prisma.io/blog/graphqlgen-fj3s0ssc1jsxTracy
12/17/2018, 3:22 PM