Im trying to get list of repositories and pull requests where the author is selected user.
I tried out this
{
user(login:"s8sachin"){
repositories(first: 100){
nodes{
name
pullRequests{
totalCount // this gives me count of PR from all collaborators
}
}
}
}
}
since this gives me PR count for all collaborators, im trying to get count by only "s8sachin"
is there a way to achieve that ? please help me. thanks