This project consists of two parts: a boilerplate React Native application and a GraphQL server. The React Native application can be found in the client directory, while the GraphQL server can be found in the server directory. For this chapter, you'll need to have both the application and the server running at all times, where you'll only make code changes to the application in the client directory.
To get started with this chapter, you'll need to run the following command in the client and server directories in order to install all of the dependencies and start both the server and the application:
npm install && npm start
For the mobile application, this command will start Expo after installing the dependencies ...