Skip to content

Instantly share code, notes, and snippets.

@TheWispy
Last active October 28, 2017 13:37
Show Gist options
  • Save TheWispy/21b4dfddbc2b00ff6efc6f94be26292e to your computer and use it in GitHub Desktop.
Save TheWispy/21b4dfddbc2b00ff6efc6f94be26292e to your computer and use it in GitHub Desktop.
GraphQL query returning matching repo names
{
search(query: "topic:hacksheffield", type: REPOSITORY, first: 10) {
repositoryCount
edges {
node {
... on Repository {
name
url
primaryLanguage{
name
color
}
owner{
login
}
description
stargazers{
totalCount
}
forks{
totalCount
}
issues(states:OPEN){
totalCount
}
projects(first:10) {
edges {
node {
... on Project {
name
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment