Created
September 18, 2019 06:16
-
-
Save nogweii/f3c4212cafad3703d630389fbf062197 to your computer and use it in GitHub Desktop.
Github GraphQL query to change your Github status
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
query GetCurrentStaus { | |
viewer { | |
login | |
status { | |
emoji | |
message | |
} | |
} | |
} | |
mutation ResetGithubStatus { | |
changeUserStatus(input: {}) { | |
status { | |
emoji | |
message | |
} | |
} | |
} | |
mutation LuckyGithubStatus { | |
changeUserStatus(input: {emoji: "🍀"}) { | |
status { | |
emoji | |
message | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment