Last active
January 2, 2019 16:53
-
-
Save monorkin/46fcf7959690904030179b9a507b1fc1 to your computer and use it in GitHub Desktop.
This file contains 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
mutation SetAvatar($url: String, $filename: String) { | |
updateUser( | |
id: "some_user_uuid" | |
input: { | |
avatar: { | |
filename: $filename | |
url: $url | |
} | |
} | |
) { | |
avatar_url | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment