home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 1234956

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_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
592364255 MDExOlB1bGxSZXF1ZXN0NTkyMzY0MjU1 16 open 0 Add a fallback ID, print if no ID found n8henrie 1234956 Fixes https://github.com/dogsheep/healthkit-to-sqlite/issues/14 2021-03-13T13:38:29Z 2021-03-13T14:44:04Z     16ab307b2138891f226a66e4954c5470de753a0f     0 27b3d54ccfe7d861770a9d0b173f6503580fea4a 71e36e1cf034b96de2a8e6652265d782d3fdf63b FIRST_TIME_CONTRIBUTOR healthkit-to-sqlite 197882382 https://github.com/dogsheep/healthkit-to-sqlite/pull/16    
596627780 MDExOlB1bGxSZXF1ZXN0NTk2NjI3Nzgw 18 open 0 Add datetime parsing n8henrie 1234956 Parses the datetime columns so they are subsequently properly recognized as datetime. Fixes https://github.com/dogsheep/healthkit-to-sqlite/issues/17 2021-03-19T14:34:22Z 2021-03-19T14:34:22Z     c87f4e8aa88ec277c6b5a000670c2cb42a10c03d     0 e0e7a0f99f844db33964b27c29b0b8d5f160202b 71e36e1cf034b96de2a8e6652265d782d3fdf63b FIRST_TIME_CONTRIBUTOR healthkit-to-sqlite 197882382 https://github.com/dogsheep/healthkit-to-sqlite/pull/18    

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