home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

7 rows where "author_date" is on date 2020-10-11 sorted by author_date

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: repo, committer_date (date)

author_date (date) 1 ✖

  • 2020-10-11 · 7 ✖
sha message author_date ▼ committer_date raw_author raw_committer repo author committer
e34e84901d084ba3aaccecea020c5f9811865c8f Link: HTTP header pagination, closes #1014 2020-10-11T00:18:45Z 2020-10-11T00:18:45Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
9d8efd17580f6ddf76745c145d1e69dd24e52b64 First working version 2020-10-11T21:46:09Z 2020-10-11T21:46:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 simonw 9599 simonw 9599
c1875feeec29a2fe15142d2b2e389836bb93a05b Use hash_id for notes, isoformat for created/updated Closes #2, closes #3 2020-10-11T23:14:52Z 2020-10-11T23:14:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 simonw 9599 simonw 9599
badba385a6d84cd7f0e85c431d05265e32420c05 ENEX don't include notebooks 2020-10-11T23:18:10Z 2020-10-11T23:18:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 simonw 9599 simonw 9599
c33d7b043a45eb3e88676e5fa3ce31755199d9f8 Create FTS and column indexes Refs #4 2020-10-11T23:19:56Z 2020-10-11T23:19:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 simonw 9599 simonw 9599
993be4b7d07c46b8795fa202ebffce81273f7b33 Enable porter stemming, closes #4 2020-10-11T23:41:24Z 2020-10-11T23:41:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 simonw 9599 simonw 9599
0242ae340b34417248fb88cdaa7716804ced1ed9 Handle subject-date note attribute 2020-10-11T23:45:15Z 2020-10-11T23:45:15Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 evernote-to-sqlite 303218369 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 93.246ms · About: simonw/datasette-graphql