Skip to content

Instantly share code, notes, and snippets.

@rricard
Created December 6, 2016 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rricard/3bf04348379ae04cb2a791560e065b7c to your computer and use it in GitHub Desktop.
Save rricard/3bf04348379ae04cb2a791560e065b7c to your computer and use it in GitHub Desktop.
enum Episode {
NEWHOPE
EMPIRE
JEDI
}
type Character {
id: ID!
name: String!
friends: [Character]
appearsIn: [Episode]
}
type Query {
hero(episode: Episode): Character!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment