home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

6 rows where milestone = 6026070

✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)

id ▼ node_id number state locked title user body created_at updated_at closed_at merged_at merge_commit_sha assignee milestone draft head base author_association repo url merged_by auto_merge
507903392 MDExOlB1bGxSZXF1ZXN0NTA3OTAzMzky 1040 closed 0 /db/table/-/blob/pk/column.blob download URL simonw 9599 Refs #1036. Still needs: - [x] Comprehensive tests across all of the code branches, plus permissions - [x] A bit more refactoring to share logic cleanly with `RowView` - ~~A configuration option to disable this feature (probably)~~ 2020-10-21T22:39:15Z 2020-10-24T23:09:20Z 2020-10-24T23:09:19Z 2020-10-24T23:09:19Z 5a1519796037105bc20bcf2f91a76e022926c204   0.51 6026070 0 4f3165f25fd9241fcf1291c797f4c77766b954dc bf82b3d6a605c9ddadd5fb739249dfe6defaf635 OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1040    
511005542 MDExOlB1bGxSZXF1ZXN0NTExMDA1NTQy 1056 closed 0 Radical new colour scheme and base styles, courtesy of @natbat simonw 9599   2020-10-27T19:31:48Z 2020-10-27T19:39:57Z 2020-10-27T19:39:56Z 2020-10-27T19:39:56Z e5f5034bcdc71e4bc62a6a155ca60eb41910c335   0.51 6026070 0 a7b2aabd5148c0ee382b583de68a4f0538f7dfb1 26bb4a268127da2c38f4241abe45444b2a6f7874 OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1056    
511868153 MDExOlB1bGxSZXF1ZXN0NTExODY4MTUz 1060 closed 0 New explicit versioning mechanism simonw 9599 - Remove all references to versioneer - Re-implement versioning to use a static string baked into the repo - Ensure that string is output by `datasette --version` and `/-/versions` Refs #1054 2020-10-28T22:14:55Z 2020-10-29T03:38:17Z 2020-10-29T03:38:16Z 2020-10-29T03:38:16Z cefd058c1c216a184bb63c79abba66893977c18e   0.51 6026070 0 4725d46780783e9875bde5957f053ba19cf92ff0 abcf0222496d8148b2e585ffa0ff192270a04b06 OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1060    
512545364 MDExOlB1bGxSZXF1ZXN0NTEyNTQ1MzY0 1061 closed 0 .blob output renderer simonw 9599 - [x] Remove the `/-/...blob/...` route I added in #1040 in place of the new `.blob` renderer URLs - [x] Link to new `.blob` download links on the arbitrary query page (using `_blob_hash=...`) - plus tests for this Closes #1050, Closes #1051 2020-10-29T20:25:08Z 2020-10-29T22:01:40Z 2020-10-29T22:01:39Z 2020-10-29T22:01:39Z 78b3eeaad9189eb737014f53212082684f4bb0d4   0.51 6026070 0 1196d084de6a7a6f68c7705a6cc096bb8df132e3 d6f9ff71378c4eab34dad181c23cfc143a4aef2d OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1061    
512736705 MDExOlB1bGxSZXF1ZXN0NTEyNzM2NzA1 1065 closed 0 Nav menu plus menu_links() hook simonw 9599 Closes #1064, refs #690. 2020-10-30T03:40:18Z 2020-10-30T03:45:17Z 2020-10-30T03:45:16Z 2020-10-30T03:45:16Z 18a64fbb29271ce607937110bbdb55488c43f4e0   0.51 6026070 0 5f118b56afbeff5348acd50a8b87537210e731ee 1a861be19e326e0c88230a711a1b6536366697d7 OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1065    
513106026 MDExOlB1bGxSZXF1ZXN0NTEzMTA2MDI2 1069 closed 0 load_template() plugin hook simonw 9599 Refs #1042 2020-10-30T15:59:45Z 2020-10-30T17:47:20Z 2020-10-30T17:47:19Z 2020-10-30T17:47:19Z 81dea4b07ab2b6f4eaaf248307d2b588472054a1   0.51 6026070 0 92f3840882a24da29d0d4073e5ed9d77fce438fc fcf43589eb6a1f1d0432772a639fd35711c48e0c OWNER datasette 107914493 https://github.com/simonw/datasette/pull/1069    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [pull_requests] (
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [number] INTEGER,
   [state] TEXT,
   [locked] INTEGER,
   [title] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [body] TEXT,
   [created_at] TEXT,
   [updated_at] TEXT,
   [closed_at] TEXT,
   [merged_at] TEXT,
   [merge_commit_sha] TEXT,
   [assignee] INTEGER REFERENCES [users]([id]),
   [milestone] INTEGER REFERENCES [milestones]([id]),
   [draft] INTEGER,
   [head] TEXT,
   [base] TEXT,
   [author_association] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
, [auto_merge] TEXT);
CREATE INDEX [idx_pull_requests_merged_by]
    ON [pull_requests] ([merged_by]);
CREATE INDEX [idx_pull_requests_repo]
    ON [pull_requests] ([repo]);
CREATE INDEX [idx_pull_requests_milestone]
    ON [pull_requests] ([milestone]);
CREATE INDEX [idx_pull_requests_assignee]
    ON [pull_requests] ([assignee]);
CREATE INDEX [idx_pull_requests_user]
    ON [pull_requests] ([user]);
Powered by Datasette · Queries took 66.51ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows