例如,我试图弄清楚如何查询拉取请求的文件大小;如果我删除几个文件,我想知道删除的累积大小。是否可以通过 REST API 或 GraphQL ?
我花了一些时间尝试探索可用的GitHub GraphQL explorer,但是删除只是一个数字,而不是字节大小:
query {
repository(owner: "MicrosoftDocs", name: "azure-docs") {
pullRequests(states: MERGED, last: 10, headRefName: "master") {
nodes {
files(first: 100) {
nodes {
deletions
}
}
}
}
}
}