Reputation: 21
I created a basic Graphql Typescript App using Apollo server and I am using Prisma and I am currently trying to build so that I can deploy and I keep getting 7 error each time I run build
here is the GitHub https://github.com/chineduknight/EasyWash_backend
Upvotes: 0
Views: 1453
Reputation: 1189
I had the same problem. Luckily I found this issue and really helped me. I removed [email protected]
& installed some "older" version of GraphQL, the [email protected]
and it all worked well.
Note: This happened to me with TypeScript (TS) & by compiling with
tsc
.
I hope this helps you and solves your issue too.
Upvotes: 1