cd server && yarn && yarn start
cd client && yarn && yarn start
- Server on
localhost:4000
and Client onlocalhost:3000
- Create react app with typescript
- install apollo-boost for writing gql query and ApolloClient. install @apollo/react-hooks for useQuery and useMutation.
- TypeScript with Nodemon to hot-reload graphql server
- Schema, resolvers on the same file for simplification
- No dataSource and database support yet (To do)
Schema -> Resolver / dataSource -> Write Query -> Test with GQL playground -> Implement on Client