Last active
December 7, 2016 12:41
-
-
Save rricard/eb821b12145894808596de6f722059a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fragment DescribeHero on Character { | |
| name | |
| appearsIn | |
| isJarJar | |
| # [eslint] Cannot query field "isJarJar" on type "Character". (graphql/template-strings) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| query HeroName { | |
| hero(episode: JARJAR) { | |
| # [eslint] Argument "episode" has invalid value JARJAR. | |
| # Expected type "Episode", found JARJAR. (graphql/template-strings) | |
| ...DescribeHero | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment