home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, repo, committer

author_date (date) 1 ✖

  • 2019-10-17 · 7 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
1aad51519b6a7a224565a44c081b136ff3a7d667 Don't create index/foreign key that already exists, fixes #25 2019-10-17T16:56:28Z 2019-10-17T16:56:42Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
3e864b1625f3142e6ff084f9b41247f2f9f60f80 Use --platform=managed for publish cloudrun, closes #587 2019-10-17T21:51:45Z 2019-10-17T21:51:45Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
619f724a722b3f23f4364f67d3164b93e8ba2a70 get_profile() now saves user to DB This ensures we don't accidentally fail to create a user record for the currently authenticated user. 2019-10-17T05:54:36Z 2019-10-17T05:54:36Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
a79fbdf29989d0537a2ebf144119d3994b9e04b5 Initial implementation of search command, refs #3 2019-10-17T17:56:29Z 2019-10-17T17:56:45Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
ba709553c5fc264cf055cf37f3ba21a96de48f83 Release 0.12 2019-10-17T17:57:33Z 2019-10-17T17:57:33Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
c9295233f219c446fa2085cace987067488a31b9 Tweet source extraction and new migration system (#24) Closes #12 and #23 2019-10-17T15:49:23Z 2019-10-17T15:49:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f twitter-to-sqlite 206156866 simonw 9599 web-flow 19864447
e6555b35a7bdb1825ecc08158e4ee6ce79397ece Instructions on updating favorited_by table with imported likes 2019-10-17T02:27:24Z 2019-10-17T02:27:24Z 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 465.815ms · About: simonw/datasette-graphql