Skip to content

Latest commit

 

History

History

docs

GraphQL in Go Workshop

Introduction

The purpose of this light workshop is to generate a GraphQL API on top of a partially-existing model. For this exercise we are going to use a simple library that fetches data from Meetup.com API such as groups, events and rsvps.

The idea of this workshop is to generate a GraphQL API capable of fetching a Meetup.com group among of its events and rsvps.

Table of contents

  1. Create the skeleton of your API
  2. Fetching basic data about Meetup.com Groups
  3. Fetching Events from a Meetup.com Group
  4. Fetching RSVPs from a Meetup.com Event
  5. Mutations (TODO)
  6. Subscription to any comment on a Meetup.com Event
  7. Data Loaders (TODO)
  8. Cache (TODO)