Skip to content

Instantly share code, notes, and snippets.

@jaunesarmiento
Created August 1, 2020 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaunesarmiento/c911b1217f94c5e47fd514855c966815 to your computer and use it in GitHub Desktop.
Save jaunesarmiento/c911b1217f94c5e47fd514855c966815 to your computer and use it in GitHub Desktop.
mutation createMessage1 {
createMessage(input: {
author: "Monica",
body: "Hi there Dave!"
}) {
id
author
body
createdAt
updatedAt
}
}
mutation createMessage2 {
createMessage(input: {
author: "Monica",
body: "What's up?"
}) {
id
author
body
createdAt
updatedAt
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment