Skip to content

Instantly share code, notes, and snippets.

@katopz
Last active July 30, 2022 10:43
Show Gist options
  • Save katopz/7e12727b41175a047a48566566b6c6e3 to your computer and use it in GitHub Desktop.
Save katopz/7e12727b41175a047a48566566b6c6e3 to your computer and use it in GitHub Desktop.
GraphQL Github Example : Get repository info.
// Try at : https://graphql-explorer.githubapp.com/
query {
repositoryOwner (login: "facebook") {
repositories {
totalCount
}
repository(name: "react") {
description
forks {
totalCount
}
issues {
totalCount
}
stargazers {
totalCount
}
watchers {
totalCount
}
pullRequests {
totalCount
}
labels(first:10) {
edges {
node {
name
}
}
}
milestones(first:10) {
edges {
node {
title
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment