Once models in resolver names are Capitalized on Nexus Generator, we need to Capitalize in requests of Prisma Table
NOTE: This component use 3 queries (findUnique, findMany, findManyCount) and 3 mutations (createOne, updateOne, deleteOne) be sure to add them in your backend by using our CLI pal generate
Now, models are creating this resolvers
| Model |
Resolver |
Request from AdminTable |
Ok? |
| commom_user |
createOneCommom_user |
createOnecommom_user |
❌ |
| CommomUser |
createOneCommomUser |
createOneCommomUser |
✅ |
Ive fixed and sending a PR
Once models in resolver names are Capitalized on Nexus Generator, we need to Capitalize in requests of Prisma Table
Now, models are creating this resolvers
Ive fixed and sending a PR