Skip to content

Instantly share code, notes, and snippets.

@nogweii
Created September 18, 2019 06:16
Show Gist options
  • Select an option

  • Save nogweii/f3c4212cafad3703d630389fbf062197 to your computer and use it in GitHub Desktop.

Select an option

Save nogweii/f3c4212cafad3703d630389fbf062197 to your computer and use it in GitHub Desktop.

Revisions

  1. No GUI created this gist Sep 18, 2019.
    27 changes: 27 additions & 0 deletions status_play.gql
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    query GetCurrentStaus {
    viewer {
    login
    status {
    emoji
    message
    }
    }
    }

    mutation ResetGithubStatus {
    changeUserStatus(input: {}) {
    status {
    emoji
    message
    }
    }
    }

    mutation LuckyGithubStatus {
    changeUserStatus(input: {emoji: "🍀"}) {
    status {
    emoji
    message
    }
    }
    }