Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1013 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 1013 Bytes

GraphQL Subscriptions Spike Solution

Introduction

This project contains several servers and a React web client that demonstrate GraphQL subscriptions over WebSocket connections. The domain in the example app is that of a online blog, where you have posts and posts are associated with zero or more comments.

Implementation

Server

The spike solution consists of two different server implementations:

Note that each server implements the same functionality, so you only need to run one server for the spike solution.

Web client

The GraphQL client is a React webapp which utilizes Apollo Client for the GraphQL connectivity to the backend servers.

graphql-subscriptions-react