home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

7 rows where "author_date" is on date 2019-10-06

✎ View and edit SQL

This data as json, CSV (advanced)

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

author_date (date) 1 ✖

  • 2019-10-06 · 7 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
2f8ceca31b8f3ca3a60bccdf25f39b7c3807877a Release 0.6 2019-10-06T04:49:17Z 2019-10-06T04:49:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
5bfc59fe205da619d2b306734fc30f7327b175e7 follow command now takes screen names, supports --sql and --ids refs #11 2019-10-06T04:33:18Z 2019-10-06T04:33:18Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
6670b0719ba4486a1341924522b73eedd0f198aa Slightly better error handling 2019-10-06T04:08:42Z 2019-10-06T04:09:48Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
a429dd14c776a7602e603a8e5fa0e99169ca34ac Experimental follow/track commands, refs #11 2019-10-06T04:09:18Z 2019-10-06T04:09:48Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
c44d286a572ba31b79f631f63fd2543fc4fb010f README tweaks 2019-10-06T05:03:17Z 2019-10-06T05:03:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 simonw 9599 web-flow 19864447
cfd977e97f82ece49c850fbed3d8778149a59c7d Documentation for follow/track commands, closes #11 2019-10-06T04:48:23Z 2019-10-06T04:48:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
fffd69ec031b83f46680f192ba57a27f0d1f0b8a Allow EXPLAIN WITH... - closes #583 2019-10-06T17:23:58Z 2019-10-06T17:23:58Z 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 46.171ms · About: simonw/datasette-graphql