Angular2 with REST Api and GraphQL
July 1, 2016 ยท View on GitHub
An example app with REST Api working side by side with GraphQL using Apollo Client with angular2-apollo.
Step by Step
I created a step by step process where you can see how to migrate from REST Api to using just GraphQL.
You can find it on the steps branch.
Starting point - Working App with REST Api
1.X - Creating GraphQL endpoint
2.X - Building an app where REST Api works side by side with GraphQL
3.X - Migrating to use only GraphQL
App
working with REST Api #rest
git checkout rest
working with GraphQL #graphql
git checkout graphql
working with REST Api + GraphQL #both
git checkout both
How to start
We have to create needed sql tables
npm run migrate
Then load some data
npm run seed
Now, we're ready to start an app
npm start
OR just
npm run start:clean
to run all the commands above at once.