nestjs-prisma-graphql-crud-gen icon indicating copy to clipboard operation
nestjs-prisma-graphql-crud-gen copied to clipboard

Generate CRUD resolvers from GraphQL schema with NestJS and Prisma

Results 12 nestjs-prisma-graphql-crud-gen issues
Sort by recently updated
recently updated
newest added

hey, all my depenencies (prisma, nestjs,...) are at @latest , node is latest lts in my console: ``` root@a3b11efbd3a4:/api# npx prisma generate Environment variables loaded from prisma/.env Prisma schema loaded...

After this commit https://github.com/mk668a/nestjs-prisma-graphql-crud-gen/commit/2e4ff13cb185f8f2dbfb88bf0ced6b3463ad45e1 (or latest commits) there are issues in outputs. 2 files not genereated and for the following files there are imports issues. 1. {**modelName**}/output/Aggregate{**modelName**}.output.ts 2. {**modelName**}/output/{**modelName**}GroupBy.output.ts import...

I have 3 tables im my DB: user role user_roles The models are User, Role and UserRoles After generation folder with files in the user.args.ts file I have errors connected...

1. add code schema.prisma 2. start:dev 3. enum path error ``` model Place { id Int @id @default(autoincrement()) name String stamps Stamp[] } model Stamp { id Int @id @default(autoincrement())...

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.0.6 to 18.14.6. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=18.0.6&new-version=18.14.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) from 4.1.1 to 4.11.0. Release notes Sourced from @​prisma/client's releases. 4.11.0 🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release....

dependencies

Bumps [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 4.1.1 to 4.11.0. Release notes Sourced from prisma's releases. 4.11.0 🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release....

dependencies

Bumps [@prisma/generator-helper](https://github.com/prisma/prisma/tree/HEAD/packages/generator-helper) from 4.1.1 to 4.11.0. Release notes Sourced from @​prisma/generator-helper's releases. 4.11.0 🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release....

dependencies

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 18.0.1 to 20.1.1. Release notes Sourced from semantic-release's releases. v20.1.1 20.1.1 (2023-02-28) Bug Fixes deps: update dependency execa to v7 (#2709) (31d9bfe) v20.1.0 20.1.0 (2023-01-25) Features plugins:...

dependencies

Hi, awesome work with this generator makes nestjs and Prisma dev seamless. Could you add an option to the generator options to enable picking a custom path for the prisma.service...