0.3.0 • Published 4 years ago
@prisma-korea/graphql-schema-generator v0.3.0
GraphQL-Schema-Generator for Prisma
Generate GraphQL schema (SDL) from Prisma schema using a custom Prisma generator.
Getting Started
- Install this package in your project using:
// pnpm, npm, or yarn
pnpm install @prisma-korea/graphql-schema-generator- Add the generator to the
schema.prisma:
generator graphql {
provider = "graphql-schema-generator"
createCRUD = "true"
# output = "./generated" This is default path.
}Run
npx prisma generateto run the generatorCheck
schema.graphqlin./prisma/generated🎉
Custom Rules
You can apply custom rules to manipulate behavior. (Some use cases). See this for example.
Contributing
Any contributions are welcome. If you are interested, check out our guidelines.