home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

7 rows where repo = 206156866

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: state, user, body, base, author_association, 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
327051673 MDExOlB1bGxSZXF1ZXN0MzI3MDUxNjcz 15 closed 0 twitter-to-sqlite import command, refs #4 simonw 9599   2019-10-11T06:37:14Z 2019-10-11T06:45:01Z 2019-10-11T06:45:01Z 2019-10-11T06:45:01Z 2019ee908731054c6eaa3d5123dfbdf7d2d70fc4     0 df1d85897118310a2d3c1b9e5aad108165302cf2 436a170d74ec70903d1b4ca430c2c6b6435cdfcc MEMBER twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/15    
329324368 MDExOlB1bGxSZXF1ZXN0MzI5MzI0MzY4 24 closed 0 Tweet source extraction and new migration system simonw 9599 Closes #12 and #23 2019-10-17T15:24:56Z 2019-10-17T15:49:29Z 2019-10-17T15:49:24Z 2019-10-17T15:49:24Z c9295233f219c446fa2085cace987067488a31b9     0 39f822a624685e321dbca8a4318741dd1e42548b 619f724a722b3f23f4364f67d3164b93e8ba2a70 MEMBER twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/24    
372273608 MDExOlB1bGxSZXF1ZXN0MzcyMjczNjA4 33 closed 0 Upgrade to sqlite-utils 2.2.1 simonw 9599   2020-02-07T07:32:12Z 2020-03-20T19:21:42Z 2020-03-20T19:21:41Z   5338f6baab3ec1424431133968d8b64a656ce4c4     0 08f51271d6309aad698b9e8a7587fcebbbd67781 35c18a09fa664324dcb75e5e58ccb90644456d02 MEMBER twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/33    
469944999 MDExOlB1bGxSZXF1ZXN0NDY5OTQ0OTk5 49 closed 0 Document the use of --stop_after with favorites, refs #20 mikepqr 370930 (I discovered this trawling the issues for how to use --since with favorites) 2020-08-19T06:10:52Z 2021-08-20T00:02:11Z 2021-08-20T00:02:11Z 2021-08-20T00:02:10Z b6a4da8be3b6d4b74c6a5fac8924bf22a6824f2c     0 7ace806c81faf31c1aace0f0b2a4c17dd72cfa06 21fc1cad6dd6348c67acff90a785b458d3a81275 CONTRIBUTOR twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/49    
549204063 MDExOlB1bGxSZXF1ZXN0NTQ5MjA0MDYz 55 closed 0 Fix archive imports jacobian 21148 This fixes the issues discussed in #54 2021-01-05T15:54:48Z 2021-08-20T00:02:49Z 2021-08-20T00:02:49Z 2021-08-20T00:02:48Z bf622dcb82203c1cd87e914901b53afe6f90e668     0 ffb127844f133fcb6a1af5cd3557995d303fb53f 21fc1cad6dd6348c67acff90a785b458d3a81275 CONTRIBUTOR twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/55    
724317650 MDExOlB1bGxSZXF1ZXN0NzI0MzE3NjUw 59 closed 0 Fix for since_id bug, closes #58 rubenv 42904 Fixes remaining instances of this bug 2021-09-01T09:49:09Z 2021-09-21T17:37:40Z 2021-09-21T17:37:40Z 2021-09-21T17:37:40Z 91aa5f578e871a7976ca0a861862f9b9dd162464     0 27369e4d1c9702de34ebc125f92ef3fc9d74abed 74726190d4031bfa36db93e189555e273b35e283 CONTRIBUTOR twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/59    
872242672 PR_kwDODEm0Qs4z_V3w 65 open 0 Update Twitter dev link, clarify apps vs projects rixx 2657547 Twitter pushes you heavily towards v2 projects instead of v1 apps – I know the README mentions v1 API compatibility at the top, but I still nearly got turned around here. 2022-03-05T11:56:08Z 2022-03-05T11:56:08Z     765a450845ba26fac102d9154980cd936399546c     0 b7cfe9dcb7dbccc7ba8171cfe74f19227c4351ec f09d611782a8372cfb002792dfa727325afb4db6 FIRST_TIME_CONTRIBUTOR twitter-to-sqlite 206156866 https://github.com/dogsheep/twitter-to-sqlite/pull/65    

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 49.032ms · About: simonw/datasette-graphql