我试图获取作者被选为用户的存储库列表和拉取请求。
我试过这个
{
user(login:"s8sachin"){
repositories(first: 100){
nodes{
name
pullRequests{
totalCount // this gives me count of PR from all collaborators
}
}
}
}
}
因为这给了我所有合作者的 PR 计数,我试图只计算"s8sachin"
有没有办法做到这一点?请帮我。谢谢