Replies: 1 comment 1 reply
-
{
viewer {
contributionsCollection(
from: "2021-01-01T00:00:00Z"
to: "2021-12-31T23:59:59Z"
) {
# if the `totalRepositoriesWithContributedCommits` number is greater than
# 100, the `maxRepositories` argument will need increasing, or the query
# will need splitting
commitContributionsByRepository(maxRepositories: 100) {
repository {
resourcePath
}
}
}
}
} seems to work for 1 year chunks |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm aware it'd be a large number of API requests, but what if we cached the responses for anything older than a year into a json file that's also committed alongside the SVG?
Beta Was this translation helpful? Give feedback.
All reactions