Created
June 3, 2018 00:53
-
-
Save larkintuckerllc/3e0c1aca3108cc7b08c36e4d110adef2 to your computer and use it in GitHub Desktop.
GraphQL and Apollo Client by Example: Part 3 - 1
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
| export default ` | |
| type Query { | |
| counter: Int | |
| } | |
| type Mutation { | |
| decrementCounter(unused: Boolean): Int | |
| incrementCounter(unused: Boolean): Int | |
| } | |
| `; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment