home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

5 rows where "author_date" is on date 2021-06-18 sorted by committer

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_author, raw_committer, author, committer, committer_date (date)

author_date (date) 1 ✖

  • 2021-06-18 · 5 ✖
sha message author_date committer_date raw_author raw_committer repo author committer ▼
7684bbf0976431371541bc91136779b4948dbabf --encoding option for sqlite-utils memory, closes #280 Refs #272 2021-06-18T15:29:41Z 2021-06-18T15:29:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
eea3851d40ea7e49cf27905cca19d200cf4cdbe4 Added test, formatted with Black - refs #276, #277 2021-06-18T14:55:26Z 2021-06-18T14:57:32Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
93594ce15b01f5ceba3bde65abe57ed28dfde9b4 Open CSV in binary mode, refs #280 2021-06-18T15:36:09Z 2021-06-18T15:36:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
42ec59d8ee3fcfb8ac1affb772aed43b6e2a7381 sqlite-utils memory command for directly querying CSV/JSON data * Turn SQL errors into click errors * Initial CSV-only prototype of sqlite-utils memory, refs #272 * Implement --save plus tests for --save and --dump, refs #272 * Re-arranged CLI query documentation, refs #272 * Re-organized CLI query docs, refs #272 * Docs for --save and --dump plus made SQL optional for those, refs #273 * Replaced one last :memory: example * Documented --attach option for memory command, refs #272 * Improved arrangement of CLI query documentation 2021-06-18T15:00:52Z 2021-06-18T15:00:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
aa652b6afe43d2b40fabc7a513c3e68866e030a5 add -h support Closes #276 2021-06-18T14:56:59Z 2021-06-18T14:56:59Z Loren McIntyre a5c9af884c4814b20969652665d29676767dceb7 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 mcint 601708 web-flow 19864447

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 92.758ms · About: simonw/datasette-graphql