Hello guys. Inside of my `prisma.yml` I have: ```g...
# orm-help
a
Hello guys. Inside of my
prisma.yml
I have:
Copy code
generate:
  - generator: typescript-client
    output: ../src/generated/prisma-client/
  - generator:  graphql-schema
    output: ../src/graphql-schema/
My question is: Can I replace
schema.graphql
with generated
prisma.graphql
file? Thanks in advance.
j
If you want to expose your entire Prisma API, then yes. You will still need to write resolvers for all queries or forward them.
a
Thank you very much.
🦜 1