Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/g13ydson/rails-apollo-federation-microservices
Example using Rails microservices with Graphql and Apollo Federation
https://github.com/g13ydson/rails-apollo-federation-microservices
apollo-federation graphql microservices rails
Last synced: 15 days ago
JSON representation
Example using Rails microservices with Graphql and Apollo Federation
- Host: GitHub
- URL: https://github.com/g13ydson/rails-apollo-federation-microservices
- Owner: g13ydson
- Created: 2020-01-09T14:27:32.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T16:44:10.000Z (almost 2 years ago)
- Last Synced: 2023-03-12T06:18:34.096Z (almost 2 years ago)
- Topics: apollo-federation, graphql, microservices, rails
- Language: Ruby
- Size: 728 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Rails GraphQL Microservices with Apollo Federation Demo
This repository is a demo of using Apollo Federation to build a single schema on top of multiple Rails microservices.
### InstallationTo run this demo locally, pull down the repository then run the following commands:
```sh
cd account && bundle install && rails db:create db:migrate db:seed
cd product && bundle install && rails db:create db:migrate db:seed
cd review && bundle install && rails db:create db:migrate db:seed
cd federation-demo && npm install
```
On different terminals, go to each service folder and run `rails s` in different ports.:
```sh
cd account && rails s -p 3000
cd product && rails s -p 3001
cd review && rails s -p 3002
```run the gateway by running this command:
```sh
npm run start-gateway
```This will start up the gateway and serve it at http://localhost:4000
### What is this?
This demo showcases four partial schemas running as federated microservices. Each of these schemas can be accessed on their own and form a partial shape of an overall schema. The gateway fetches the service capabilities from the running services to create an overall composed schema which can be queried.
To see the query plan when running queries against the gateway, click on the `Query Plan` tab in the bottom right hand corner of [GraphQL Playground](http://localhost:4000)
To learn more about Apollo Federation, check out the [docs](https://www.apollographql.com/docs/apollo-server/federation/introduction)