This is the sample project that based on the How to GraphQL's React & Apollo Tutorial.
git clone https://github.com/roginaldosemog/react-apollo
To install the Prisma CLI globally with Yarn, use the following command:
yarn global add prisma
Also, run the following commands:
cd react-apollo/server
yarn install
prisma deploy
Then, follow these steps in the interactive CLI wizard:
- Select Demo server
- Authenticate with Prisma Cloud in your browser (if necessary)
- Back in your terminal, confirm all suggested values
To start the server, all you need to do is execute the start
script by running the following command inside the server
directory:
yarn start
Note: If you want to interact with the GraphQL API of the server inside a GraphQL Playground, you can navigate to http://localhost:4000.
Now that the server is running, you can start the React app as well. The commands need to be run in a new terminal tab/window inside the root directory react-apollo
(because the current tab is blocked by the process running the server):
yarn install
yarn start
You can now open your browser and use the app on http://localhost:3000.