Last active
August 23, 2021 03:57
-
-
Save aabmass/4386c10e8631e66b5660e75df2e85b22 to your computer and use it in GitHub Desktop.
contributions YE2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
user(login: "aabmass") { | |
id | |
login | |
organizations(first: 10) { | |
nodes { | |
id | |
name | |
} | |
} | |
...UserContributions | |
} | |
} | |
fragment UserContributions on User { | |
opentelemetryContributions: contributionsCollection(from: "2021-03-01T00:00:00", organizationID: "MDEyOk9yZ2FuaXphdGlvbjQ5OTk4MDAy") { | |
...OrgContribution | |
} | |
gcpContributions: contributionsCollection(from: "2021-03-01T00:00:00", organizationID: "MDEyOk9yZ2FuaXphdGlvbjI4MTA5NDE") { | |
...OrgContribution | |
} | |
ocContributions: contributionsCollection(from: "2021-03-01T00:00:00", organizationID: "MDEyOk9yZ2FuaXphdGlvbjI2OTQ0NTI1") { | |
...OrgContribution | |
} | |
} | |
fragment OrgContribution on ContributionsCollection { | |
pullRequestContributionsByRepository { | |
repository { | |
nameWithOwner | |
} | |
contributions(first: 100) { | |
totalCount | |
nodes { | |
pullRequest { | |
number | |
additions | |
deletions | |
} | |
} | |
} | |
} | |
pullRequestReviewContributionsByRepository { | |
repository { | |
nameWithOwner | |
} | |
contributions(first: 100) { | |
totalCount | |
nodes { | |
pullRequest { | |
number | |
} | |
pullRequestReview { | |
comments { | |
totalCount | |
} | |
} | |
} | |
} | |
} | |
issueContributionsByRepository { | |
repository { | |
nameWithOwner | |
} | |
contributions(first: 100) { | |
totalCount | |
nodes { | |
issue { | |
number | |
} | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"user": { | |
"id": "MDQ6VXNlcjE1MTAwMDQ=", | |
"login": "aabmass", | |
"organizations": { | |
"nodes": [ | |
{ | |
"id": "MDEyOk9yZ2FuaXphdGlvbjI2OTQ0NTI1", | |
"name": "OpenCensus" | |
}, | |
{ | |
"id": "MDEyOk9yZ2FuaXphdGlvbjQ5NzIyOTcz", | |
"name": "googlers" | |
}, | |
{ | |
"id": "MDEyOk9yZ2FuaXphdGlvbjQ5OTk4MDAy", | |
"name": "OpenTelemetry - CNCF" | |
} | |
] | |
}, | |
"opentelemetryContributions": { | |
"pullRequestContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python" | |
}, | |
"contributions": { | |
"totalCount": 4, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2012, | |
"additions": 1, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1680, | |
"additions": 244, | |
"deletions": 42 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1679, | |
"additions": 17, | |
"deletions": 17 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1671, | |
"additions": 179, | |
"deletions": 61 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-collector-contrib" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2713, | |
"additions": 1800, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2677, | |
"additions": 63, | |
"deletions": 54 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python-contrib" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 618, | |
"additions": 3, | |
"deletions": 3 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-dotnet-contrib" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 91, | |
"additions": 2, | |
"deletions": 0 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-specification" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 1513, | |
"additions": 1, | |
"deletions": 1 | |
} | |
} | |
] | |
} | |
} | |
], | |
"pullRequestReviewContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python" | |
}, | |
"contributions": { | |
"totalCount": 23, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2040 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2026 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2025 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2028 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1983 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2013 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1995 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1992 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2009 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2007 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2002 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1976 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1946 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1942 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1892 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1908 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1853 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1816 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 5 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1762 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1725 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1690 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1699 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1661 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python-contrib" | |
}, | |
"contributions": { | |
"totalCount": 15, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 598 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 613 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 619 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 596 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 586 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 603 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 577 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 583 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 559 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 536 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 442 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 436 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 415 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 392 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 345 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 5 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-specification" | |
}, | |
"contributions": { | |
"totalCount": 5, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 1828 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 6 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1617 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1574 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 3 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1590 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 3 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1512 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-collector-contrib" | |
}, | |
"contributions": { | |
"totalCount": 5, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 4453 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 3342 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2956 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2821 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2777 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/oteps" | |
}, | |
"contributions": { | |
"totalCount": 3, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 161 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 157 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 6 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 155 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-js-api" | |
}, | |
"contributions": { | |
"totalCount": 3, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 92 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 30 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 14 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-js" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2393 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2288 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-proto" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 322 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 272 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 4 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/build-tools" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 57 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 3 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-js-contrib" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 547 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
} | |
], | |
"issueContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python" | |
}, | |
"contributions": { | |
"totalCount": 4, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 2011 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 1775 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 1691 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 1678 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-js" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 2281 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 2272 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-python-contrib" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 476 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 382 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry-js-api" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 91 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "open-telemetry/opentelemetry.io" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 520 | |
} | |
} | |
] | |
} | |
} | |
] | |
}, | |
"gcpContributions": { | |
"pullRequestContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-python" | |
}, | |
"contributions": { | |
"totalCount": 34, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 159, | |
"additions": 24, | |
"deletions": 17 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 158, | |
"additions": 208, | |
"deletions": 68 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 157, | |
"additions": 25, | |
"deletions": 3 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 156, | |
"additions": 11, | |
"deletions": 11 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 154, | |
"additions": 1, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 151, | |
"additions": 67, | |
"deletions": 44 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 150, | |
"additions": 32, | |
"deletions": 4 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 149, | |
"additions": 23, | |
"deletions": 23 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 148, | |
"additions": 0, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 147, | |
"additions": 9, | |
"deletions": 8 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 143, | |
"additions": 52, | |
"deletions": 4 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 142, | |
"additions": 81, | |
"deletions": 5 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 141, | |
"additions": 8, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 140, | |
"additions": 351, | |
"deletions": 151 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 139, | |
"additions": 50, | |
"deletions": 67 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 138, | |
"additions": 170, | |
"deletions": 23 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 137, | |
"additions": 219, | |
"deletions": 39 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 136, | |
"additions": 214, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 135, | |
"additions": 20, | |
"deletions": 4 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 134, | |
"additions": 79, | |
"deletions": 117 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 132, | |
"additions": 148, | |
"deletions": 177 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 129, | |
"additions": 4, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 128, | |
"additions": 257, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 127, | |
"additions": 0, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 126, | |
"additions": 105, | |
"deletions": 56 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 125, | |
"additions": 161, | |
"deletions": 108 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 124, | |
"additions": 437, | |
"deletions": 46 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 123, | |
"additions": 23, | |
"deletions": 13 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 122, | |
"additions": 26, | |
"deletions": 26 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 121, | |
"additions": 71, | |
"deletions": 94 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 117, | |
"additions": 10, | |
"deletions": 2 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 116, | |
"additions": 8, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 113, | |
"additions": 66, | |
"deletions": 42 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 112, | |
"additions": 46, | |
"deletions": 5 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-js" | |
}, | |
"contributions": { | |
"totalCount": 27, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 310, | |
"additions": 24, | |
"deletions": 24 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 303, | |
"additions": 5, | |
"deletions": 14 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 300, | |
"additions": 43, | |
"deletions": 33 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 297, | |
"additions": 14, | |
"deletions": 14 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 294, | |
"additions": 47, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 293, | |
"additions": 106, | |
"deletions": 2 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 292, | |
"additions": 1, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 291, | |
"additions": 24, | |
"deletions": 24 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 290, | |
"additions": 65, | |
"deletions": 57 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 289, | |
"additions": 65, | |
"deletions": 65 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 285, | |
"additions": 308, | |
"deletions": 37 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 284, | |
"additions": 253, | |
"deletions": 256 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 283, | |
"additions": 7, | |
"deletions": 3 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 282, | |
"additions": 10527, | |
"deletions": 69 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 281, | |
"additions": 10753, | |
"deletions": 107 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 280, | |
"additions": 1, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 279, | |
"additions": 183, | |
"deletions": 156 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 278, | |
"additions": 8139, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 274, | |
"additions": 416, | |
"deletions": 329 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 268, | |
"additions": 32086, | |
"deletions": 32836 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 266, | |
"additions": 32183, | |
"deletions": 32859 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 265, | |
"additions": 1, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 264, | |
"additions": 32836, | |
"deletions": 32090 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 246, | |
"additions": 5, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 243, | |
"additions": 28, | |
"deletions": 18 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 242, | |
"additions": 17838, | |
"deletions": 1032 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 239, | |
"additions": 27137, | |
"deletions": 198 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-e2e-testing" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2, | |
"additions": 380, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1, | |
"additions": 1093, | |
"deletions": 352 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-java" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 112, | |
"additions": 60, | |
"deletions": 10 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-go" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 178, | |
"additions": 121, | |
"deletions": 2 | |
} | |
} | |
] | |
} | |
} | |
], | |
"pullRequestReviewContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-js" | |
}, | |
"contributions": { | |
"totalCount": 39, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 315 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 313 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 312 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 307 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 308 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 306 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 304 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 276 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 305 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 301 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 299 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 298 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 297 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 295 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 296 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 287 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 288 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 261 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 277 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 272 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 269 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 258 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 263 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 262 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 259 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 260 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 255 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 256 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 253 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 250 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 251 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 248 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 249 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 244 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 178 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 245 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 237 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 240 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 238 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-go" | |
}, | |
"contributions": { | |
"totalCount": 13, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 203 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 200 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 202 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 201 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 194 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 195 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 191 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 192 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 184 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 177 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 183 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 180 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 150 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-java" | |
}, | |
"contributions": { | |
"totalCount": 11, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 118 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 115 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 113 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 109 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 7 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 105 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 102 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 99 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 98 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 97 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 96 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 94 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-python" | |
}, | |
"contributions": { | |
"totalCount": 11, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 161 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 151 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 2 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 153 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 152 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 145 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 115 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 134 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 124 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 123 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 107 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 111 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/golang-samples" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2095 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
} | |
], | |
"issueContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-js" | |
}, | |
"contributions": { | |
"totalCount": 3, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 314 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 267 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 241 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-python" | |
}, | |
"contributions": { | |
"totalCount": 3, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 144 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 130 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 120 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/opentelemetry-operations-go" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 176 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "GoogleCloudPlatform/cloud-ops-sandbox" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 718 | |
} | |
} | |
] | |
} | |
} | |
] | |
}, | |
"ocContributions": { | |
"pullRequestContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-node" | |
}, | |
"contributions": { | |
"totalCount": 13, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 936, | |
"additions": 20, | |
"deletions": 9 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 935, | |
"additions": 2, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 934, | |
"additions": 16, | |
"deletions": 14 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 931, | |
"additions": 4, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 930, | |
"additions": 129, | |
"deletions": 166 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 927, | |
"additions": 4, | |
"deletions": 1 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 918, | |
"additions": 6, | |
"deletions": 9 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 912, | |
"additions": 5, | |
"deletions": 12 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 911, | |
"additions": 971, | |
"deletions": 3944 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 908, | |
"additions": 1425, | |
"deletions": 504 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 907, | |
"additions": 2114, | |
"deletions": 4363 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 906, | |
"additions": 10, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 905, | |
"additions": 48, | |
"deletions": 57 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-python" | |
}, | |
"contributions": { | |
"totalCount": 7, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 1064, | |
"additions": 2, | |
"deletions": 2 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1063, | |
"additions": 7, | |
"deletions": 2 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1060, | |
"additions": 72, | |
"deletions": 41 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1056, | |
"additions": 20, | |
"deletions": 15 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1050, | |
"additions": 20, | |
"deletions": 15 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1049, | |
"additions": 5, | |
"deletions": 0 | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1048, | |
"additions": 63, | |
"deletions": 9 | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-web" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 437, | |
"additions": 3, | |
"deletions": 14 | |
} | |
} | |
] | |
} | |
} | |
], | |
"pullRequestReviewContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-node" | |
}, | |
"contributions": { | |
"totalCount": 19, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 932 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 928 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 926 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 773 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 861 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 817 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 559 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 922 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 920 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 919 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 890 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 898 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 866 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 897 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 902 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 909 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 904 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 905 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 879 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-python" | |
}, | |
"contributions": { | |
"totalCount": 7, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 1065 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1031 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 6 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1060 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1036 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1034 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1016 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 1014 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-java" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 2078 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 1 | |
} | |
} | |
}, | |
{ | |
"pullRequest": { | |
"number": 2077 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
}, | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-go" | |
}, | |
"contributions": { | |
"totalCount": 1, | |
"nodes": [ | |
{ | |
"pullRequest": { | |
"number": 1257 | |
}, | |
"pullRequestReview": { | |
"comments": { | |
"totalCount": 0 | |
} | |
} | |
} | |
] | |
} | |
} | |
], | |
"issueContributionsByRepository": [ | |
{ | |
"repository": { | |
"nameWithOwner": "census-instrumentation/opencensus-node" | |
}, | |
"contributions": { | |
"totalCount": 2, | |
"nodes": [ | |
{ | |
"issue": { | |
"number": 933 | |
} | |
}, | |
{ | |
"issue": { | |
"number": 910 | |
} | |
} | |
] | |
} | |
} | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run the
contributions.graphql
query in the Github API Explorer to load the json