【发布时间】:2017-11-23 14:47:27
【问题描述】:
我想进行一些数据研究,并希望使用 Github GraphQL API 从搜索结果中下载存储库内容。
我已经找到的是如何进行简单的搜索查询,但问题是: 如何从搜索结果中下载仓库内容?
这是我当前返回存储库名称和描述 (try to run here) 的代码:
{
search(query: "example", type: REPOSITORY, first: 20) {
repositoryCount
edges {
node {
... on Repository {
name
descriptionHTML
}
}
}
}
}
【问题讨论】:
标签: git api github graphql github-api