home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

9 rows where "author_date" is on date 2020-08-11 sorted by message

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, committer_date (date)

author_date (date) 1 ✖

  • 2020-08-11 · 9 ✖
sha message ▼ author_date committer_date raw_author raw_committer repo author committer
f7fddc9019516c4702416fe4cdb05a07ac214b61 Fixed typo in help text, refs #925 2020-08-11T22:33:16Z 2020-08-11T22:33:16Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
be1fcd34b33d32e2276ceb81e2abef4a82cda1f8 Link to GitHub Discussions Also fixed a couple of master => main 2020-08-11T02:47:09Z 2020-08-11T02:47:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
e21face1d74d65170283bc77ba783d9f99c76998 Link to discussions forum 2020-08-11T02:49:22Z 2020-08-11T02:49:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
5126ecb1267ed3850bf3b0ab270accd031a02e79 Re-arranged installation docs, added Homebrew - closes #923 2020-08-11T22:52:41Z 2020-08-11T22:52:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
3fa261d1d2034b9444526ad764600f9798d9058c Removed Python 3.5 installation instructions Suggested here: https://github.com/simonw/datasette/discussions/921#discussioncomment-49362 2020-08-11T03:26:42Z 2020-08-11T03:26:42Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
6a126fa25f0c835372387de73f0842c656467fbe Removed aiohttp from test dependencies It wasn't being used. 2020-08-11T23:05:00Z 2020-08-11T23:05:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
adfe3042817a297fcb3160c1e3a446ece0149008 Upgrade pip in GitHub Actions runs 2020-08-11T23:12:05Z 2020-08-11T23:12:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
afdeda8216d4d3027f87583ccdbef17ad85022ef Use runpy in install/uninstall, refs #928 2020-08-11T23:54:52Z 2020-08-11T23:54:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
01fe5b740171bfaea3752fc5754431dac53777e3 datasette install / datasette uninstall commands, closes #925 2020-08-11T22:31:47Z 2020-08-11T22:32:06Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 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 228.51ms · About: simonw/datasette-graphql