Skip to content

Instantly share code, notes, and snippets.

@guillaumegarcia13
Created June 15, 2017 14:45
Show Gist options
  • Save guillaumegarcia13/62d482622f49a189b9cae63ba155952c to your computer and use it in GitHub Desktop.
Save guillaumegarcia13/62d482622f49a189b9cae63ba155952c to your computer and use it in GitHub Desktop.
# Consume GraphQL at: https://developer.github.com/v4/explorer/
query ($login: String!, $repo: String!) {
organization(login: $login) {
name
url
repository(name: $repo) {
name
watchers(first: 100) {
nodes {
login
repositories {
count: totalCount
}
followers {
count: totalCount
}
company
name
email
isHireable
location
}
}
}
}
}
{
"login": "gatling",
"repo": "gatling"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment