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 is placed in the server directory. For this chapter, you'll need to have both the application and the server running at all times, while you only make code changes to the application in the client directory.
To get started you'll need to run the following command in both the client and server directories to install all of the dependencies and start both the server and application:
npm install && npm start
For the mobile application, this command will start Expo after installing the dependencies, and it gives you the ability ...