dependent_repos (view)
5 rows where "dependent_created" is on date 2022-02-21
This data as json, CSV (advanced)
Suggested facets: repo, dependent, dependent_created, dependent_updated, dependent_created (date), dependent_updated (date)
repo | dependent | dependent_created | dependent_updated | dependent_stars | dependent_watchers |
---|---|---|---|---|---|
simonw/sqlite-utils | https://github.com/bengosney/rhgservices | 2022-02-21T20:40:38Z | 2022-04-06T07:42:18Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/jthodge/google-drive-to-sqlite | 2022-02-21T15:42:02Z | 2022-02-21T15:42:01Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/xganneval-ma/autofilter | 2022-02-21T09:15:18Z | 2022-02-21T09:20:54Z | 0 | 0 |
simonw/datasette | https://github.com/eyeseast/spatial-data-cooking-show | 2022-02-21T02:07:06Z | 2022-02-21T02:07:45Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/eyeseast/spatial-data-cooking-show | 2022-02-21T02:07:06Z | 2022-02-21T02:07:45Z | 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;