Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.31 KB

README.md

File metadata and controls

24 lines (15 loc) · 1.31 KB

film-reviews

Building on the previous app, this app explores how we can use custom queries in GraphQL schema to request data from a remote server to use. Essentially, it demonstrates how an app could work that combines remote data and user-supplied data, saving the final result in the app's own database after processing.

You can search for a film and write a review about it. Your username, rating and review content all get stored in the database. The stored information is accessible at any time from the UI.

I've walked through the process of building both apps on DEV which you can find on my account page here.

Tools used

Favicon from the awesome Feather.

How to run

First, change the uri of APOLLO_CLIENT in src/index.js to your own endpoint that has been deployed with schema.graphql. The current uri won't work. Then run:

npm install
npm start