Skip to content

Instantly share code, notes, and snippets.

@nogweii
Created September 18, 2019 06:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nogweii/f3c4212cafad3703d630389fbf062197 to your computer and use it in GitHub Desktop.
Save nogweii/f3c4212cafad3703d630389fbf062197 to your computer and use it in GitHub Desktop.
Github GraphQL query to change your Github status
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