AFAIK we can use one of the 3 combinations for running GraphQL on the server:
- graphql-yoga with prisma (See Wesbos's Fullstack React course)
- apollo-server (See https://www.apollographql.com/docs/apollo-server/)
- express-graphql (See https://www.youtube.com/watch?v=ed8SzALpx1Q and Academind's GraphQL+MERN stack Youtube playlist)
Also see graphql-tools
And for the frontend (React) side GraphQL setup, we can use:
- apollo-client with react-apollo
Also, withData HOC in frontend
Backend: Prisma + GraphQL Yoga
See and write from Video 14 of Wes Bos' course
Loading Comments...