home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

7 rows where "author_date" is on date 2019-04-13

✎ View and edit SQL

This data as json, CSV (advanced)

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

sha ▼ message author_date committer_date raw_author raw_committer repo author committer
13ee3c222f8ee967a2f716cca11bee4ea51fea46 Moved BaseView.absolute_url() to Datasette 2019-04-13T19:16:05Z 2019-04-13T19:16:05Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
274ef43bb7b129ddc2e68805b4f4ff3776fb9503 Moved expand_foreign_keys() from TableView to Datasette 2019-04-13T18:48:00Z 2019-04-13T18:48:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
9dc7a1824be0a876b8f54e0edd4467d9a357e0cb Slightly more interesting example link 2019-04-13T22:49:07Z 2019-04-13T22:49:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
bc6a9b45646610f362b4287bc4110440991aa4d6 ?_where= parameter on table views, closes #429 From pull request #430 2019-04-13T01:37:22Z 2019-04-13T01:37:22Z Simon Willison 2946d096d0cdefdc017559e6b57e87658736e843 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
d1075b8259b06e6002aaecc9a1167a4db9b2c2f4 Cleaned up pylint warnings 2019-04-13T19:20:10Z 2019-04-13T19:20:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
d4bfb8461c68ba2912f6d01fe159ce186a9040c6 Removed accidental extra default plugins module 2019-04-13T19:33:23Z 2019-04-13T19:33:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
f2c767c2221b06c0fb4962cfa430e038359019d3 Fixed broken link in documentation 2019-04-13T01:56:51Z 2019-04-13T01:57:43Z 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 84.416ms · About: simonw/datasette-graphql