Hi, there is something I dont understand with Pris...
# prisma-whats-new
n
Hi, there is something I dont understand with Prisma... I am adding a new model type "Car", but I cannot see any operation available in the playground (updateCar, cars, deleteCar etc... ). Do i need to create a resolver for each operation? How to make bindings automatic like in the graphcool framework?
b
The prisma equivalent to "did you plug it in" is, "did you prisma deploy"?
n
I did a prisma deploy yes. So it is the way it should work? Change the datamodel, deploy, and have standards operations available? No need no create a resolver for each op?
c
So, when you deploy, Prisma generates the APIs that you pointed out - but this is only to query the database. These are not meant to be exposed to your front end / client. For that, you need to separately create an application schema - Go through this tutorial - https://www.howtographql.com/graphql-js/1-getting-started/ It will not only get you up to speed with Prisma but will also teach you the difference between application schema v/s database schema
n
Thanks I understand it a lot better now!