home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

11 rows where "author_date" is on date 2020-04-18 sorted by author_date

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: repo, committer_date (date)

author_date (date) 1 ✖

  • 2020-04-18 · 11 ✖
sha message author_date ▼ committer_date raw_author raw_committer repo author committer
f58f7464243f75367da2ad3cab240246e6e2e618 Release 2.7 - refs #100 2020-04-18T00:04:50Z 2020-04-18T00:04:50Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
0ad3ce5e2d664c227d7045afafec46704f251a10 Use INTEGER for organization column, fixes #27 2020-04-18T00:18:45Z 2020-04-18T00:18:45Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
4fa33ffcf138e50125d8d04dcaa34ea32413151e New contributors command, refs #28 2020-04-18T01:19:56Z 2020-04-18T01:19:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
9ca6dc835ca6da948ee5f766024ad0734cc69db8 Handle 204 No Content from GitHub API, refs #28 2020-04-18T14:53:39Z 2020-04-18T14:53:39Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
13f8868fb5efa01c263b24f6dd91c617e6e938e1 Demo also pulls datasette and sqlite-utils 2020-04-18T14:56:47Z 2020-04-18T14:56:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
87d4bcfff4babcb17c1125884cce5791054b5cca Note that demo includes datasette and sqlite-utils now 2020-04-18T15:06:46Z 2020-04-18T15:06:46Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
5cd34bd07d704487d48ac741ee5da5317afe88d2 Release 1.1 2020-04-18T15:07:04Z 2020-04-18T15:07:04Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
86d3ca4015d23f494d372e8623e62318723f2220 Initial checkn + s3-auth command, closes #5 2020-04-18T21:08:29Z 2020-04-18T21:08:29Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 dogsheep-photos 256834907 simonw 9599 simonw 9599
6989842e8e512f1b47ed17554f56c6fa67811ae9 Test for s3-auth command Also renamed JSON keys to have photos_s3 prefix - refs #5 2020-04-18T21:15:49Z 2020-04-18T21:15:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 dogsheep-photos 256834907 simonw 9599 simonw 9599
2ff303f8eac37d72231427944e05d93c30fba98f Ignore my auth.json 2020-04-18T21:17:41Z 2020-04-18T21:18:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 dogsheep-photos 256834907 simonw 9599 simonw 9599
502efb941a8177611d6295c864f7a88553af2fa7 photos-to-sqlite upload photos.db dirname command, closes #4 2020-04-18T21:57:00Z 2020-04-18T21:57:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 dogsheep-photos 256834907 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 215.917ms · About: simonw/datasette-graphql