Created
January 2, 2019 16:56
-
-
Save monorkin/0b5699a516650251adad7ac0ef9bc6fc 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($data: String, $filename: String) { | |
updateUser( | |
id: "some_user_uuid" | |
input: { | |
avatar: { | |
filename: $filename | |
data: $data | |
} | |
} | |
) { | |
avatar_url | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment