Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 674 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 674 Bytes

GraphQL gqlgen subscriptions example

The following is a chat application which uses GraphQL subscriptions to communicate in real-time between clients. The original client is part of the this tutorial and the backend is rewritten in Golang with gqlgen.

Start Server

cd server/
go run server.go

Start Client

cd client/
yarn
yarn start

A client will be available on http://localhost:8080. Launch multiple clients in different windows to simulate a chat.

More Examples