home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

10 rows where "author_date" is on date 2022-01-06

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: committer_date, raw_committer, repo, committer_date (date)

committer 2 ✖

  • simonw 8
  • web-flow 2

author_date (date) 1 ✖

  • 2022-01-06 · 10 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
2e4847e493a03d95f827ddfaa698c052e3b231a8 Implemented --convert for different things, renamed --all to --text 2022-01-06T05:44:04Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
3d464893ee442c179a8e5015ffd7577f34f01adc Release 3.20 Refs #344, #353, #356, #362 2022-01-06T06:55:35Z 2022-01-06T06:55:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
413f8ed754e38d7b190de888c85fe8438336cb11 --convert --text for iterators, docs for --convert 2022-01-06T06:19:52Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
6e46b9913411682f3a3ec66f4d58886c1db8654b Renamed ip to source in example code 2022-01-06T18:01:35Z 2022-01-06T18:01:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
751bc900366ca52e662ea383b858cbf4365093d9 datasette-atom plugin I'm going to see if I can subscribe to new issues and issue comments across all of these repos. 2022-01-06T17:19:02Z 2022-01-06T17:19:02Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f github-to-sqlite 207052882 simonw 9599 web-flow 19864447
9e286cc6d2edc14ee7f7263450b11cfdc8f72157 New help for --lines and --all and --convert and --import, refs #356 2022-01-06T01:32:40Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
a7b29bfaa99c34dc40414b4ad12bff9b78d70427 Fixed bug with sqlite-utils upsert --detect-types, closes #362 2022-01-06T06:28:29Z 2022-01-06T06:28:29Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
d1ed2f423d71aa2ea9676a71ba4bb2861c5c4e73 Refactored sqlite-utils insert tests into test_cli_insert.py 2022-01-06T01:57:03Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
e66299c6eda3091557504526aaf0f64fb321cb35 Implemented and documented sqlite-utils insert --all 2022-01-06T02:16:51Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
f1569c9f7fc063ddf2f1ca91d5f1798afa9d0262 Implemented sqlite-utils insert --lines 2022-01-06T02:10:10Z 2022-01-06T06:24:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
                ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
                ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
                ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
                ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
                ON [commits] ([raw_author]);
Powered by Datasette · Queries took 300.219ms · About: simonw/datasette-graphql