home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

8 rows where "author_date" is on date 2021-08-20

✎ View and edit SQL

This data as json, CSV (advanced)

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

author 3 ✖

  • simonw 6
  • jacobian 1
  • mikepqr 1

author_date (date) 1 ✖

  • 2021-08-20 · 8 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
00a9a5a5d184251c46e4c6426b10a1e56583300f Release 0.21.4 Refs #20, #55, #57 2021-08-20T00:04:07Z 2021-08-20T00:04:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
10dddcc2822863f9a6dbdc5cd4b28c6c4e4e9170 Fix for since_id bug, closes #57 2021-08-20T00:01:16Z 2021-08-20T00:01:28Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
257d40bc76e79423c042c2d92942347680b705e8 Handle new activity_summary columns, refs #19 2021-08-20T00:47:13Z 2021-08-20T00:47:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 healthkit-to-sqlite 197882382 simonw 9599 simonw 9599
2a1def46e15baf6328e76a7660a3cfeb7b22e4f3 Switch to GitHub Actions 2021-08-20T00:12:10Z 2021-08-20T00:12:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
76fb65d1a4d8a3982ef7b921f35fbecdedd4a971 master => main 2021-08-20T00:14:08Z 2021-08-20T00:14:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 simonw 9599 web-flow 19864447
9fe3cb17e03d6c73222b63e643638cf951567c4c Release 1.0.1 Refs #19 2021-08-20T00:55:29Z 2021-08-20T00:55:29Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 healthkit-to-sqlite 197882382 simonw 9599 simonw 9599
b6a4da8be3b6d4b74c6a5fac8924bf22a6824f2c Document the use of --stop_after with favorites, refs #20 Thanks, @mikepqr 2021-08-20T00:02:10Z 2021-08-20T00:02:10Z Mike Lee Williams 216dbfd3bd82e49cf8d12e9f574d76f408f2f0d6 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 mikepqr 370930 web-flow 19864447
bf622dcb82203c1cd87e914901b53afe6f90e668 Fixes for archive imports (#55) * Find data files in subdirectories in archives See #54 for discussion. This also ignores files in the new "assets" directory, which appear to be some stuff for a browser interface Twitter's created. * Fix list-member importer It appears in list data that some rows contain a `urls` key with a list of URLs, while others contain a `url` key with just a single one. This change supports either way. * Fix tweet import This was working, sorta, but wasn't properly unpacking the tweet data into columns. This commit fixes that in what I think should be a backwards-compatible way. 2021-08-20T00:02:48Z 2021-08-20T00:02:48Z Jacob Kaplan-Moss 2035bd0fdcffb9aa3b95f21a684665482bd8c80f GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 jacobian 21148 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 55.713ms · About: simonw/datasette-graphql