Skip to content

Instantly share code, notes, and snippets.

@paulbakker
Created February 2, 2021 20:31
Show Gist options
  • Save paulbakker/231a30ae91b2321f4b9d90f28438de31 to your computer and use it in GitHub Desktop.
Save paulbakker/231a30ae91b2321f4b9d90f28438de31 to your computer and use it in GitHub Desktop.
Basic GraphQL Schema
type Query {
shows(titleFilter: String): [Show]
}
type Show {
title: String
releaseYear: Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment