blob: 2f7d1f2121f1d02613cdd25bce4dfe7bd1ed6cec [file]
-- SELECT
-- repo_name,
-- number,
-- count() AS comments,
-- count(distinct actor_login) AS authors
-- FROM github_events
-- WHERE event_type = 'IssueCommentEvent' AND (action = 'created') AND (number > 10)
-- GROUP BY repo_name, number
-- HAVING authors >= 10
-- ORDER BY comments DESC
-- LIMIT 50