我想进行一些数据研究,并希望使用Github GraphQL API从搜索结果中下载存储库内容。
我已经找到的是如何进行简单的搜索查询,但问题是: 如何从搜索结果中下载存储库内容?
这是我当前的代码,它返回存储库名称和描述(try to run here):
{
search(query: "example", type: REPOSITORY, first: 20) {
repositoryCount
edges {
node {
... on Repository {
name
descriptionHTML
}
}
}
}
}
答案 0 :(得分:9)
您可以使用以下内容获取repo默认分支上最新提交的tarball / zipball网址:
{
repository(owner: "google", name: "gson") {
defaultBranchRef {
target {
... on Commit {
tarballUrl
zipballUrl
}
}
}
}
}
使用搜索查询,您可以使用以下内容:
{
search(query: "example", type: REPOSITORY, first: 20) {
repositoryCount
edges {
node {
... on Repository {
defaultBranchRef {
target {
... on Commit {
zipballUrl
}
}
}
}
}
}
}
}
使用curl,jq和&amp ;;下载该搜索的所有zip的脚本xargs:
curl -s -H "Authorization: bearer YOUR_TOKEN" -d '
{
"query": "query { search(query: \"example\", type: REPOSITORY, first: 20) { repositoryCount edges { node { ... on Repository { defaultBranchRef { target { ... on Commit { zipballUrl } }}}}}}}"
}
' https://api.github.com/graphql | jq -r '.data.search.edges[].node.defaultBranchRef.target.zipballUrl' | xargs -I{} curl -O {}
答案 1 :(得分:0)
@tharinduwijewardane
JFYI,您可以通过此查询下载特定分支的zip
$room_price