home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

5 rows where "author_date" is on date 2020-11-30 and raw_committer = "cd792325681cbad9f663f2879d8b69f1edbb678f"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: repo, author_date (date), committer_date (date)

sha ▼ message author_date committer_date raw_author raw_committer repo author committer
461670a0b87efa953141b449a9a261919864ceb3 Support for generated columns * Support for generated columns, closes #1116 * Show SQLite version in pytest report header * Use table_info() if SQLite < 3.26.0 * Cache sqlite_version() rather than re-calculate every time * Adjust test_database_page for SQLite 3.26.0 or higher 2020-11-30T21:29:57Z 2020-11-30T21:29:57Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
5148f10da94a8684bb747cb3d25ccfff8185ff5a workflow_dispatch 2020-11-30T01:31:12Z 2020-11-30T01:31:12Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f github-to-sqlite 207052882 simonw 9599 web-flow 19864447
7d7e207f57a5c06ab6d7160d57c5a19716dd9b2b Link to example tables, closes. 2020-11-30T04:10:07Z 2020-11-30T04:10:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f github-to-sqlite 207052882 simonw 9599 web-flow 19864447
7ede11eca30a8ad5ef78cd1f8b6eb6aa7b91f268 Release 2.8.1 Refs #56 2020-11-30T04:16:41Z 2020-11-30T04:16:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f github-to-sqlite 207052882 simonw 9599 web-flow 19864447
904877589de50582c721f898b84476060ca01ae2 Documented releases command 2020-11-30T04:15:14Z 2020-11-30T04:15:14Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f github-to-sqlite 207052882 simonw 9599 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 160.686ms · About: simonw/datasette-graphql