Skip to content

Instantly share code, notes, and snippets.

@gabrielgatu
Created January 10, 2019 18:23
Show Gist options
  • Save gabrielgatu/5d086dec9a0196a0f68fc90de9010180 to your computer and use it in GitHub Desktop.
Save gabrielgatu/5d086dec9a0196a0f68fc90de9010180 to your computer and use it in GitHub Desktop.
query {
search(query: "stars:>10", type: REPOSITORY, first: 12, after: "Y3Vyc29yOjI=") {
repositoryCount,
pageInfo {
hasNextPage
endCursor
}
edges {
node {
... on Repository {
id
name
nameWithOwner
descriptionHTML
url
sshUrl
diskUsage
forkCount
isMirror
mirrorUrl
createdAt
updatedAt
owner {
login
url
avatarUrl
}
repositoryTopics(first: 10) {
edges {
... on RepositoryTopicEdge {
node {
topic {
name
}
}
}
}
}
stargazers {
totalCount
}
forks {
totalCount
}
issues {
totalCount
}
pullRequests {
totalCount
}
primaryLanguage {
name
}
releases(first: 5) {
totalCount
edges {
... on ReleaseEdge{
node {
name
description
publishedAt
createdAt
}
}
}
}
codeOfConduct {
name
body
url
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment