hey everyone.. I'm getting a little antsy with Pri...
# orm-help
d
hey everyone.. I'm getting a little antsy with Prisma... When developing the GraphQL server after deploying a Prisma Service, do I need to copy/paste the generated schema to my GraphQL Server's schema.graphql? For example, let's say I want to bubble, let's say,
updateUser
mutation.. should I need to mirror the inputs and all the generated stuff to my server's schema? That, or horde my schema.graphql with
import
comments.
n
yes, pretty much. you can use tools like
forwardTo
to simplify this process, but from a high level this is what you need to do 🙂
d
damn it, that is an issue I haven't thought about.. Thanks for the link @nilan