Skip to content

A end-to-end demo of federated subscriptions with Apollo Federation along with a collection of examples and implementation patterns

Notifications You must be signed in to change notification settings

apollosolutions/federated-subscriptions

Repository files navigation

Federated Subscriptions

This repository provides a end-to-end demo of federated subscriptions with Apollo Federation along with a collection of examples and implementation patterns that can be easily wired into the demo environment.

.
│
├── subgraphs/
│   ├── products/ # This is Apollo Server
│   ├── users/ # This is in Apollo Server
│   └── reviews/
│       ├── js-apollo-server/
│       │   ├── callback/  # In Progress
│       │   ├── websockets/
│       │   └── reliable-delivery/  # In Progress
│       └── go-gqlgen/
│           ├── callback/ # In Progress
│           ├── websockets/
│           └── reliable-delivery/  # In Progress
│
├── diagrams/
│
├── client/ # Client React demo with Apollo Client
├── rover/ # Rover configurations for local composition per example
│   └── websockets/ 
│
├── router/ # Router files - Dockerfile and configurations per example
│   └── websockets/ 
│
├── docker-compose.yaml # Docker compose set up for a full deployment of client, router, subgraphs
├── makefile # Commands to simplify usage
├── dot_env # Copy and update for .env file
└── README.md

Demo Overview

Preview of client available in repo

The demo includes a federated environment with 3 subgraphs: products, reviews, and users.

  • Products + Users Subgraphs - 2 Subgraphs written in Javascript with Apollo Server that provide the additional metadata for a federated context, these are static across all demo

  • Reviews Subgraph - The primary subscription subgraph written in various languages/framework including example patterns to solve particular requirements. These are interchangable in the demo environment, and managed through the .env file.

Client Demo

This repository also includes an example with Apollo Client + React that leverages the power of Federated Subscriptions - federating data upon graphql subscription events.

Preview of client available in repo

Getting Started

Requirements

You will need an enterprise enabled GraphOS account, please reach out to your account team to acquire a trial account or schedule a quick consultation.

In addition, you will need Docker installed to run the complete demo (router, subgraphs, client).

Usage

  1. Clone this repo:
git clone https://github.com/apollosolutions/federated-subscriptions.git
  1. Configure and create a .env file, by using the example provided in dot_env

To use this demo you will need APOLLO_KEY and APOLLO_GRAPH_REF environment variables. Refer to the Connect the router to Studio documentation for steps outlining where to find these values.

Once you have these values add them to a .env file:

APOLLO_KEY=service:graphos-subscriptions-demo:A1a1B1b1C1c1
APOLLO_GRAPH_REF=graphos-subscriptions-demo@current

Important

The APOLLO_KEY and APOLLO_GRAPH_REF are only used to validate enterprise entitlements to use subscriptions onthe router, but when running the demo, the schema is overrided by the router/supergraph.graphl local schema file.

  1. Update .env to include which framework to use:
FRAMEWORK=go-gqlgen
SUBS_EXAMPLE=websockets

Currently what is supported, but will be extended for other examples

  • FRAMEWORK: go-gqlgen, js-apollo-server (planned: java-dgs, dot-net-hot-chocolate)

  • SUBS_EXAMPLE: websockets (planned: callback, reliable-delivery/lossless)

Start Up Containers

  1. Start the Subgraphs and Router (Docker containers):
cd federated-subscriptions
make demo

After composing, the router is now available at http://localhost:4040 and the client is available at http://localhost:3000.

In addition, you can quickly validate the deployment with the make command or test a subscription from your terminal

make validate-demo

# --graphql
# --graphql
# --graphql
# Success! A subscription was requested, and data was received successfully!"

make test-sub

# --graphql
# content-type: application/json

# {}
# --graphql
# content-type: application/json

# {"payload":{"data":{"reviewAdded":{"id":1,"body":"Apollo may only be the 3rd US human spaceflight program, but my ride was 1st class!","product":{"createdBy":{"name":"Neil Armstrong","email":"neil.armstrong@finalfrontier.com"},"name":"Apollo 11 Ride","sku":"apollo-11-ride"}}}}}
# --graphql

Modifying Demo

Local Supergraph Composition

If you want to test making changes to subgraph schemas, and have rover installed.

Update the rover/rover.yaml with the correct subgraph reference, and run the following to compose a new supergraph:

cd federated-subscriptions
rover supergraph compose --config ./rover/your-example/rover.yaml > ./router/your-example/supergraph.graphql

Running Locally

If you want to run outside of docker, you'll need to uncomment the overrides in the router/<SUBS_EXAMPLE>/router.yaml configuration.

Contributing an Example

  1. Make sure your example graph runs on port 4000 and it's graphql and subscription endpoint is also on /graphql
  2. Place the corresponding example and it's Dockerfile in the respective directory in subgraph/<framework>/<example>
  3. Add associated configurations for the router/<example> and rover/<example>
  4. Test containers: make build-force && make demo

Related Content

General

Server

Client

About

A end-to-end demo of federated subscriptions with Apollo Federation along with a collection of examples and implementation patterns

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published