Created
August 25, 2017 15:31
-
-
Save gc-codesnippets/f9f99c0fa64d11f416fad2bd33a40492 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
| mutation ice { | |
| createPost( | |
| input: { | |
| description: "Ice Cream!", | |
| imageUrl: "https://s-media-cache-ak0.pinimg.com/originals/b9/ba/b9/b9bab9dcacb9efde92e015af07834473.jpg", | |
| clientMutationId: "" | |
| } | |
| ) { | |
| post { | |
| id | |
| } | |
| } | |
| } | |
| | |
| mutation howdy { | |
| createPost( | |
| input: { | |
| description: "Howdy Partner", | |
| imageUrl: "http://www.cutestpaw.com/wp-content/uploads/2015/09/s-Howdy-partner.jpeg", | |
| clientMutationId: "" | |
| } | |
| ) { | |
| post { | |
| id | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment