Skip to content

Instantly share code, notes, and snippets.

@ecthiender
Created August 13, 2018 06:53
Show Gist options
  • Select an option

  • Save ecthiender/dea2ce20f51aba01e70117df2b1c2634 to your computer and use it in GitHub Desktop.

Select an option

Save ecthiender/dea2ce20f51aba01e70117df2b1c2634 to your computer and use it in GitHub Desktop.
mutation update_likes {
update_article(
where: {id: {_eq: 1}},
_inc: {likes: 1}
) {
affected_rows
returning {
id
likes
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment