Skip to content

Instantly share code, notes, and snippets.

@cpuspellcaster
Created October 18, 2017 03:22
Show Gist options
  • Save cpuspellcaster/7bcf489b06225b329253251086a1781c to your computer and use it in GitHub Desktop.
Save cpuspellcaster/7bcf489b06225b329253251086a1781c to your computer and use it in GitHub Desktop.
Query GitHub GQL for all terraform-providers
# Query the GitHub GraphQL API for all of the terraform-provider names and URLs
# https://developer.github.com/v4/explorer/
query {
organization(login: "terraform-providers") {
name
repositories(first: 100) {
totalCount
nodes {
name
url
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment