Last active
February 25, 2020 20:39
-
-
Save slgraff/1407d6a16b1d77c25da2881c9fdfd21c to your computer and use it in GitHub Desktop.
GraphQL query to determine number of followers on GitHub
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
query { | |
user(login: "USER_NAME") { | |
followers { | |
totalCount | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment