I want to make some data researches and want to download repositories content from the search results with Github GraphQL API.
What I already found is how to make simple search query, but the question is: How to download repositories content from the search results?
Here is my current code that returns repositories name and description (try to run here):
{
search(query: "example", type: REPOSITORY, first: 20) {
repositoryCount
edges {
node {
... on Repository {
name
descriptionHTML
}
}
}
}
}