Can you run multiple generators?
# prisma-client
k
Can you run multiple generators?
n
That's definitely possible 🙂 you can do this:
Copy code
generate:
  - generator: javascript-client
    output: ./prisma-client-js/
  - generator: graphql-schema
    output: ./graphql-schema/
See the docs here: https://www.prisma.io/docs/prisma-client/setup/generating-the-client-rsc1/
k
Ahh that's great, thanks @nikolasburk