What is the difference between these two queries in GitHub GraphQL?
query {
user(login: "desai10") {
contributionsCollection {
totalPullRequestContributions
}
}
}
and
query{
user(login: "desai10") {
pullRequests {
totalCount
}
}
}
?
The 1st query says I have raised 5 PRs while the 2nd one says I have raised 17 PRs (17 seems to be the correct number).
These two queries are supposed to give the same number right? What is the difference and why is it giving different results?