home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 706257

✎ 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
357974326 MDExOlB1bGxSZXF1ZXN0MzU3OTc0MzI2 3 closed 0 Add todoist-to-sqlite bcongdon 706257 Really enjoying getting into the dogsheep/datasette ecosystem. I made a downloader for Todoist, and I think/hope others might find this useful 2019-12-30T04:02:59Z 2020-10-12T00:35:58Z 2020-10-12T00:35:57Z 2020-10-12T00:35:57Z 85af27dbff7e08a92656639fbf0cfa15c7d30b5c     0 49bc87a43555d10696044e8e40d700d93611a190 58ca0c785fbf34250042379dd0269bf2d0c5ea7e CONTRIBUTOR dogsheep.github.io 214746582 https://github.com/dogsheep/dogsheep.github.io/pull/3    
370024697 MDExOlB1bGxSZXF1ZXN0MzcwMDI0Njk3 4 closed 0 Add beeminder-to-sqlite bcongdon 706257   2020-02-02T15:51:36Z 2020-10-12T00:36:16Z 2020-10-12T00:36:16Z 2020-10-12T00:36:16Z 7e4c6ecdabc249c77e8049cd172b1b5af08a3371     0 6713b5c50178b95a9ec50227d4ef5793e71e8b0a 2972bb001ab5f675eced62f7ba5adef2d3eba2ad CONTRIBUTOR dogsheep.github.io 214746582 https://github.com/dogsheep/dogsheep.github.io/pull/4    

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