dependent_repos (view)
11 rows where "dependent_created" is on date 2022-06-08
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/datasette | https://github.com/chekos/taller-datasette-codigofacilito | 2022-06-08T23:37:08Z | 2022-06-08T23:43:30Z | 0 | 0 |
simonw/datasette | https://github.com/almsx/datasette-tacos | 2022-06-08T23:36:54Z | 2022-06-08T23:43:49Z | 0 | 0 |
simonw/datasette | https://github.com/TaniaAlexBM/intDatasette | 2022-06-08T23:35:26Z | 2022-06-08T23:49:37Z | 0 | 0 |
simonw/datasette | https://github.com/simonw/datasette-socrata | 2022-06-08T15:13:44Z | 2022-06-09T21:13:34Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/simonw/datasette-socrata | 2022-06-08T15:13:44Z | 2022-06-09T21:13:34Z | 0 | 0 |
simonw/datasette | https://github.com/digital-land/check-data-prototype | 2022-06-08T13:46:22Z | 2022-11-17T10:13:17Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/Adrmaul/ccg | 2022-06-08T13:45:54Z | 2022-06-08T13:47:07Z | 0 | 0 |
simonw/datasette | https://github.com/aadittambe/walkthrough | 2022-06-08T02:25:00Z | 2022-06-10T00:53:24Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/aadittambe/walkthrough | 2022-06-08T02:25:00Z | 2022-06-10T00:53:24Z | 0 | 0 |
simonw/datasette | https://github.com/eyeseast/whos-on-first | 2022-06-08T01:56:12Z | 2022-06-08T01:56:17Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/eyeseast/whos-on-first | 2022-06-08T01:56:12Z | 2022-06-08T01:56:17Z | 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;