home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

6 rows where "author_date" is on date 2019-10-11

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, committer_date (date)

author_date (date) 1 ✖

  • 2019-10-11 · 6 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
1d84a96a47a70680de9d621771dfe6cf2082cf08 home-timeline command, closes #18 2019-10-11T16:51:03Z 2019-10-11T16:51:03Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
2019ee908731054c6eaa3d5123dfbdf7d2d70fc4 twitter-to-sqlite import command, closes #4 2019-10-11T06:45:00Z 2019-10-11T06:45:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 simonw 9599 web-flow 19864447
2045f2766387dada103dce4c9aaf1418bfaec3b5 Use archive_ in README 2019-10-11T16:55:10Z 2019-10-11T16:55:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
6a8012b6370154616f073cd8f1c159c3b388b0b7 twitter-to-sqlite import recreates archive- tables, closes #17 2019-10-11T15:40:00Z 2019-10-11T15:40:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
d22afae39b1390964dace33f43a8f86c222876fe Archive tables use _ not - Tables with hyphens in the name are harder to query because you have to remember to [escape-them]. 2019-10-11T16:54:25Z 2019-10-11T16:54:25Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
fb2698086d766e0333a55bb73435e7283feeb438 Release 0.8 2019-10-11T06:45:21Z 2019-10-11T06:45:21Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 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 48.653ms · About: simonw/datasette-graphql