home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

7 rows where "author_date" is on date 2020-04-21

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: committer_date (date)

author_date (date) 1 ✖

  • 2020-04-21 · 7 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
02e38b363ed2211fd32f7d97bef36512b5ebf294 Foreign keys for milestones table, refs #31 2020-04-21T18:58:21Z 2020-04-21T18:58:21Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
2cf75a0a036719eb7e57fdc7c5c2ea0f4c26978a Fix for creator foreign key on milestones, refs #31 2020-04-21T19:14:23Z 2020-04-21T19:14:29Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
717ac2a715f12444aad48cbe339d3a5c98214d75 Fix for issue_comments bug #32 Refs #31 2020-04-21T20:25:35Z 2020-04-21T20:25:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
7757a417c266f311152e3ccf359e35e3c2f1e063 Use foreign key to repos table on issues and milestones, refs #31 2020-04-21T18:44:43Z 2020-04-21T18:44:43Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
92a72e540479123c78207a68984a2a4a41fbc17b Ignore *.json and *.db and .DS_Store 2020-04-21T00:28:55Z 2020-04-21T00:30:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
befb6fec28828394c42af546ea0d738fb02cfec9 Ensure issues.milestone/assignee are integers, closes #30 2020-04-21T00:36:15Z 2020-04-21T00:36:15Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 simonw 9599 simonw 9599
e0e8d8caa9657b04bfb8a2cf16c9b580f38b1805 milestones now has FK to creator, plus repo column - closes #29 2020-04-21T00:43:52Z 2020-04-21T00:43:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 github-to-sqlite 207052882 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 54.542ms · About: simonw/datasette-graphql