dependent_repos (view)
6 rows where "dependent_created" is on date 2022-08-01
This data as json, CSV (advanced)
Suggested facets: repo, dependent, dependent_created, dependent_updated, dependent_stars, dependent_watchers, dependent_created (date), dependent_updated (date)
repo | dependent | dependent_created | dependent_updated | dependent_stars | dependent_watchers |
---|---|---|---|---|---|
simonw/datasette | https://github.com/asg017/sqlite-url | 2022-08-01T19:54:03Z | 2023-03-22T16:04:05Z | 17 | 17 |
simonw/sqlite-utils | https://github.com/asg017/sqlite-url | 2022-08-01T19:54:03Z | 2023-03-22T16:04:05Z | 17 | 17 |
simonw/datasette | https://github.com/asg017/sqlite-path | 2022-08-01T19:49:33Z | 2023-03-22T15:14:25Z | 15 | 15 |
simonw/sqlite-utils | https://github.com/asg017/sqlite-path | 2022-08-01T19:49:33Z | 2023-03-22T15:14:25Z | 15 | 15 |
simonw/sqlite-utils | https://github.com/digitty-forks/cloud-data-quality | 2022-08-01T19:27:28Z | 2022-08-13T12:23:19Z | 0 | 0 |
simonw/datasette | https://github.com/brandonrobertz/datasette-shorturl | 2022-08-01T04:58:08Z | 2022-08-02T00:21:55Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW dependent_repos AS select repos.full_name as repo, 'https://github.com/' || dependent_repos.full_name as dependent, dependent_repos.created_at as dependent_created, dependent_repos.updated_at as dependent_updated, dependent_repos.stargazers_count as dependent_stars, dependent_repos.watchers_count as dependent_watchers from dependents join repos as dependent_repos on dependents.dependent = dependent_repos.id join repos on dependents.repo = repos.id order by dependent_repos.created_at desc;