0

作成者が選択されたユーザーであるリポジトリとプルリクエストのリストを取得しようとしています。

これを試してみました

{
  user(login:"s8sachin"){
    repositories(first: 100){
      nodes{
        name
        pullRequests{
          totalCount // this gives me count of PR from all collaborators 
        }
      }
    }
  }
}

これにより、すべての協力者のPRカウントが得られるため、カウントを取得しようとしています"s8sachin"

それを達成する方法はありますか?私を助けてください。ありがとう

4

2 に答える 2

0

現時点ではそれを行う方法はありませんが、タグを使用してhttps://platform.github.community/c/graphql-apiでスキーマ リクエストを行うことができます。schema-request理想的には、接続authoredByに関する引数になります。pullRequests

query($owner:String!,$name:String!,$authoredBy:String!) {
  repository(owner:$owner,name:$name) {
    pullRequests(authoredBy:$login) {
      totalCount
    }
  }
}
于 2018-06-22T19:38:00.893 に答える