Last active
August 13, 2018 06:23
-
-
Save ecthiender/9db7f948715e5117d6d4cc67df3b35ee to your computer and use it in GitHub Desktop.
Generated update mutations by HGE
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
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