# Timeframe

Published articles for Timeframe.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## How to Query GitHub for User Contributions in a Specific Timeframe

DevFeed: [How to Query GitHub for User Contributions in a Specific Timeframe](<https://devfeed.tech/articles/how-to-query-github-for-user-contributions-in-a-specific-timeframe-31867.md>)

Original publisher: [Read original article](<https://www.metachris.dev/2025/10/how-to-query-github-for-user-contributions-in-a-specific-timeframe/>)

Author: Chris Hager

Published: 2025-10-10T00:00:00Z

Content type: tutorial

Language: en

Sources: [Chris Hager](<https://devfeed.tech/sources/chris-hager.md>)

Topics: [GitHub](<https://devfeed.tech/topics/github.md>), [GraphQL](<https://devfeed.tech/topics/graphql.md>), [GitHub API](<https://devfeed.tech/topics/github-api.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [contributions](<https://devfeed.tech/tags/contributions.md>), [github](<https://devfeed.tech/tags/github.md>), [graphql](<https://devfeed.tech/tags/graphql.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [query](<https://devfeed.tech/tags/query.md>), [repositories](<https://devfeed.tech/tags/repositories.md>), [timeframe](<https://devfeed.tech/tags/timeframe.md>), [tracking](<https://devfeed.tech/tags/tracking.md>)

### AI overview

A tutorial showing how to use the GitHub GraphQL API to list public repositories a user contributed to during a specified timeframe, with an optional modification to include commit counts and format the output.

### Source excerpt

I needed needed to find all public GitHub repositories a user has contributed to within a specific timeframe, and wanted to share - and record for myself - the API query I learned. This can be a useful for generating reports, tracking progress, analyzing activity over a certain period, and more. Use the GitHub GraphQL API We leverage the GitHub GraphQL API to get the list of public repositories a user contributed to within a specific timeframe, using the contributionsCollection field to specify a time range and retrieve contributions made by a user during that period.