home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

10 rows where "author_date" is on date 2023-07-08

✎ View and edit SQL

This data as json, CSV (advanced)

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

sha ▼ message author_date committer_date raw_author raw_committer repo author committer
0183e1a72d4d93b1d9a9363f4d47fcc0b5d5849c Preserve JSON key order in YAML, refs #1153 2023-07-08T17:26:50Z 2023-07-08T17:27:36Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
0f7192b6154edb576c41b55bd3f2a3f53e5f436a One last YAML/JSON change, closes #1153 2023-07-08T20:08:09Z 2023-07-08T20:08:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
2fd871a9063fd0e1bc60ddb11756c6954460dfc0 Drop support for Python 3.7, refs #2097 2023-07-08T18:40:19Z 2023-07-08T18:40:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
38fcc96e67f8a77cd09d13c96f2abf7cd822ebb4 Removed duplicate imports, refs #1153 2023-07-08T17:09:26Z 2023-07-08T17:09:26Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
3b336d8071fb5707bd006de1d614f701d20246a3 Utility function for cog for generating YAML/JSON tabs, refs #1153 2023-07-08T16:37:47Z 2023-07-08T16:37:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
42ca574720cca4c1451a3cbf0e1aa85df174153f Removed accidental test code I added, refs #1153 2023-07-08T19:50:22Z 2023-07-08T19:50:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
45e6d370ce3becc17ce8d06a8257bef691a3cc10 Install docs dependencies for tests, refs #1153 2023-07-08T18:35:15Z 2023-07-08T18:35:15Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
50a6355c081a79c63625d96d3d350603298da42b Workaround to get sphinx-build working again, refs 1153 2023-07-08T18:22:21Z 2023-07-08T18:22:21Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
c076fb65e07a7957b8a45804dc8d8cb92020f0ec Applied sphinx-inline-tabs to remaining examples, refs #1153 2023-07-08T18:00:08Z 2023-07-08T18:00:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
d7b21a862335d3765247d84e5afe778f83eb69ee metadata.yaml now treated as default in docs Added sphinx-inline-tabs to provide JSON and YAML tabs to show examples. Refs #1153 2023-07-08T16:37:01Z 2023-07-08T16:37:01Z 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 537.01ms · About: simonw/datasette-graphql