home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

3 rows where user = 96218

✎ 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
475665984 MDExOlB1bGxSZXF1ZXN0NDc1NjY1OTg0 142 closed 0 insert_all(..., alter=True) should work for new columns introduced after the first 100 records simonwiles 96218 Closes #139. 2020-08-28T22:22:57Z 2020-08-30T07:28:23Z 2020-08-28T22:30:14Z 2020-08-28T22:30:14Z 947bb7626fd1763608a470adf9cf5f156ef003e9     0 1b992c7c1e5855caa87c7939efad287052f446f3 ea87c2b943fdd162c42a900ac0aea5ecc2f4b9d9 CONTRIBUTOR sqlite-utils 140912432 https://github.com/simonw/sqlite-utils/pull/142    
475874493 MDExOlB1bGxSZXF1ZXN0NDc1ODc0NDkz 146 closed 0 Handle case where subsequent records (after first batch) include extra columns simonwiles 96218 Addresses #145. I think this should do the job. If it meets with your approval I'll update this PR to include an update to the documentation -- I came across this bug while preparing a PR to update the documentation around `batch_size` in any event. 2020-08-30T07:13:58Z 2020-09-08T23:20:37Z 2020-09-08T23:20:37Z 2020-09-08T23:20:36Z e6d202b742a7b531fffa593703d34f8337632d68     0 40fcea41525682fdc2f601da787b29d5a8517dcd deb2eb013ff85bbc828ebc244a9654f0d9c3139e CONTRIBUTOR sqlite-utils 140912432 https://github.com/simonw/sqlite-utils/pull/146    
483027587 MDExOlB1bGxSZXF1ZXN0NDgzMDI3NTg3 156 closed 0 Typos in tests simonwiles 96218 One of these is my fault, and the other is one I just happened to come across. They're harmless, but might as well be fixed. 2020-09-09T18:00:58Z 2020-09-09T18:24:50Z 2020-09-09T18:21:23Z 2020-09-09T18:21:23Z 367082e787101fb90901ef3214804ab23a92ce46     0 b777776753ef08f35dfaa7d86b2d5082e8904f27 6be61263642d8e46ec54cf5f51af74e0df2f2393 CONTRIBUTOR sqlite-utils 140912432 https://github.com/simonw/sqlite-utils/pull/156    

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