dependent_repos (view)
15 rows where "dependent_created" is on date 2020-09-25
This data as json, CSV (advanced)
Suggested facets: dependent_created (date), dependent_updated (date)
repo | dependent | dependent_created | dependent_updated | dependent_stars | dependent_watchers |
---|---|---|---|---|---|
simonw/sqlite-utils | https://github.com/SebastienSalazar/devops_aula07 | 2020-09-25T23:04:05Z | 2020-09-25T23:59:47Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/ronaldosouza2759/202002_aula_07 | 2020-09-25T22:51:36Z | 2020-10-14T13:54:14Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/LeonardoDantasFigueiredo/devops_aula07 | 2020-09-25T22:48:18Z | 2020-09-26T00:17:49Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/rbbelizario/202002_s_devops_aula007 | 2020-09-25T22:46:51Z | 2020-09-26T00:11:19Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/Lucas-Mendes04/Devops_Aula07 | 2020-09-25T22:46:50Z | 2020-09-26T00:02:05Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/MS-Oliveira/Dev_Ops_aula_07 | 2020-09-25T22:46:26Z | 2020-09-26T00:25:44Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/eldiasilva/202002_s_DevOps_Aula7 | 2020-09-25T22:46:24Z | 2020-09-26T00:38:38Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/fernandohmlozano/devops_aula7 | 2020-09-25T22:46:23Z | 2020-09-26T01:28:31Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/calebe-takehisa/devops-aula07 | 2020-09-25T22:46:15Z | 2020-09-26T00:23:33Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/jackelinesaez/devops_aula07 | 2020-09-25T22:46:14Z | 2020-09-26T00:27:02Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/danilobalbo/202002_s_devops-aula07 | 2020-09-25T22:46:13Z | 2020-09-26T00:00:08Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/MarcosR92/Faculdade-DevOps-Python-sqlite3 | 2020-09-25T22:46:08Z | 2022-02-21T19:58:40Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/tathycavalcanti/devops-aula07 | 2020-09-25T22:46:07Z | 2020-09-26T00:25:02Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/alinerlima/devops_aula07 | 2020-09-25T22:46:03Z | 2020-09-26T00:22:27Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/kuma-impacta/202002_s_devops-aula07 | 2020-09-25T22:45:59Z | 2020-09-26T00:22:23Z | 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;