我想获取有关我的项目被查看、克隆的次数以及流量来自(个人)的信息。
我目前可以Traffic
通过单击Insights
存储库的按钮(通过 Web 界面)查看此信息。
GitHub v4 GraphQL API 中是否有用于检索此信息的模式?
我得到的最接近的是以下内容;nodes
不包含任何类型的统计数据:
{
viewer {
repositories(first: 100) {
totalCount
nodes {
name
description
}
pageInfo {
endCursor
hasNextPage
}
}
}
}
// response
{
"data": {
"viewer": {
"repositories": {
"totalCount": 55,
"nodes": [
{
"name": "Repo Name",
"description": "Repo Description"
},
{
...
}
}
}
}
}