repos_starred (view)
1 row where "starred_at" is on date 2019-12-06 and watchers_count = 116
This data as json, CSV (advanced)
Suggested facets: starred_at (date), updated_at (date), pushed_at (date)
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW repos_starred AS select stars.starred_at, starring_user.login as starred_by, repos.* from repos join stars on repos.id = stars.repo join users as starring_user on stars.user = starring_user.id join users on repos.owner = users.id order by starred_at desc;