Skip to content

Instantly share code, notes, and snippets.

@stubailo
Forked from rricard/DescribeHero.graphql
Created January 12, 2017 13:53
Show Gist options
  • Save stubailo/a02f2c4016989ece82d9ef0e39388d07 to your computer and use it in GitHub Desktop.
Save stubailo/a02f2c4016989ece82d9ef0e39388d07 to your computer and use it in GitHub Desktop.
query HeroName($episode: Episode) {
hero(episode: $episode) {
...DescribeHero
}
}
fragment DescribeHero on Character {
name
appearsIn
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment