Here is the activity on flutter/flutter#158050 in hte last 100 days (from 2025-08-13 to 2025-11-21):
| Total reactions | Total comments | New reactions | New comments |
|---|---|---|---|
| 95 | 14 | 3 | 2 |
-
Install DuckDB.
-
Download the data.
git clone https://github.com/loic-sharma/github-insights.git
-
Launch DuckDB.
cd github-insightsduckdb -ui
-
Run this query:
SELECT repository || '#' || id AS issue_id, any_value(title) AS title, min(date) AS start, max(date) AS end, max(reactions) AS total_reactions, max(comments) AS total_comments, max(reactions) - min(reactions) AS new_reactions, max(comments) - min(comments) AS new_comments, 'https://github.com/' || repository || '/issues/' || id AS issue_url, FROM 'top_issues/flutter/flutter/*.jsonl' WHERE date_diff('day', "date", today()) <= 100 AND issue_id = 'flutter/flutter#158050' GROUP BY repository, issue_id, id HAVING new_reactions > 0 OR new_comments > 0 ORDER BY new_reactions DESC ;