home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_author, repo, author, committer_date (date)

author_date (date) 1 ✖

  • 2019-11-04 · 10 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
169ea455fc1f1d5e5b6e44cb339ba7ffa9d49c31 Added table.delete_where(), closes #62 2019-11-04T16:18:06Z 2019-11-04T16:18:06Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
19073d6d972fad9d68dd74c28544cd29083f1c12 Added table.delete(pk) method, refs #62 2019-11-04T16:07:44Z 2019-11-04T16:08:01Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
31ec6e4badb77cf3a0c7a6e82bd3c992c5e1ec30 Release 0.14 2019-11-04T05:32:37Z 2019-11-04T05:32:37Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
4f86a46b1e6ef4d02d72fd2241850039f41fd8a8 Added --since and --since_id to search, refs #3 2019-11-04T05:30:58Z 2019-11-04T05:30:58Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
52fa79c6075f0830ff635b81d957c64d877a05aa Use select colnames, not select * for table view - refs #615 2019-11-04T23:03:48Z 2019-11-04T23:03:48Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
801c0c2daf17d8abce9dcb5d8d610410e7e25dbe Documentation for search command, closes #3 2019-11-04T05:31:10Z 2019-11-04T05:31:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 twitter-to-sqlite 206156866 simonw 9599 simonw 9599
931bfc66613aa3e22f8314df5c0d0758baf31f38 Handle spaces in DB names (#590) Closes #503 - thanks, @rixx 2019-11-04T23:16:30Z 2019-11-04T23:16:30Z Tobias Kunze b90d9715d7c0881515e9d6aa98923ed89d445945 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 rixx 2657547 simonw 9599
9db22cdf1809fb78a7b183cd2f617cd5e26efc68 pk__notin= filter, closes #614 2019-11-04T04:11:55Z 2019-11-04T04:11:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
a0a65f9a6405079b01aefdbf4b5f507bc758567a Release 1.12 2019-11-04T16:28:52Z 2019-11-04T16:28:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
ee330222f4c3ee66c2fe41ebc76fed56b9cb9a00 Offer to format readonly SQL (#602) Following discussion in #601, this PR adds a "Format SQL" button to read-only SQL (if the SQL actually differs from the formatting result). It also removes a console error on readonly SQL queries. Thanks, @rixx! 2019-11-04T02:39:55Z 2019-11-04T02:39:55Z Tobias Kunze b90d9715d7c0881515e9d6aa98923ed89d445945 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 rixx 2657547 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 74.086ms · About: simonw/datasette-graphql