Skip to content

Instantly share code, notes, and snippets.

@ecthiender
Last active August 13, 2018 06:23
Show Gist options
  • Save ecthiender/9db7f948715e5117d6d4cc67df3b35ee to your computer and use it in GitHub Desktop.
Save ecthiender/9db7f948715e5117d6d4cc67df3b35ee to your computer and use it in GitHub Desktop.
Generated update mutations by HGE
update_author(
_inc: author_inc_input
_set: author_set_input
where: author_bool_exp!
): author_mutation_response
author_set_input {
id: Int
name: String
}
update_article(
_inc: article_inc_input
_set: article_set_input
where: article_bool_exp!
): article_mutation_response
article_inc_input {
author_id: Int
id: Int
likes: Int
}
article_set_input {
author_id: Int
content: String
id: Int
is_published: Boolean
likes: Int
published_on: timestamptz
title: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment