Skip to content

My attempt at building a fullstack GraphQL application using React, Apollo and Slash GraphQL.

Notifications You must be signed in to change notification settings

selectiveduplicate/film-reviews

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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