Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Created August 25, 2017 15:31
Show Gist options
  • Select an option

  • Save gc-codesnippets/f9f99c0fa64d11f416fad2bd33a40492 to your computer and use it in GitHub Desktop.

Select an option

Save gc-codesnippets/f9f99c0fa64d11f416fad2bd33a40492 to your computer and use it in GitHub Desktop.
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