home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 1392657

✎ 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 auto_merge repo url merged_by
117142455 MDExOlB1bGxSZXF1ZXN0MTE3MTQyNDU1 1382 closed 0 attempt to fix #497 gidden 1392657 - [x] closes #497 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry This is a suggested fix to #497. I am happy to clean it up, etc., if the maintainers think it is worthwhile. 2017-04-23T09:26:10Z 2017-05-29T07:39:28Z 2017-05-25T02:06:07Z 2017-05-25T02:06:07Z f517be7b1b3f41090eca04d06d7f434916861a7c     0 032b3895ef9519e68b8fe0b6e78e9e6bae66e690 d80248476ebe4a3845211c5d58e0af1effc73ea3 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/1382  
118539051 MDExOlB1bGxSZXF1ZXN0MTE4NTM5MDUx 1393 closed 0 dl tutorial files to tmp directory, then move them once successful gidden 1392657 closes #1392 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry I'm not sure how to best add tests for this. Also not sure how best to import `shutil`. I followed the current pattern for `os`, but am not sure why that pattern exists in this file. I can clean up further if this is deemed useful. 2017-05-02T11:52:46Z 2017-05-21T19:04:26Z 2017-05-21T19:04:20Z 2017-05-21T19:04:20Z 3737d2610bb6466babc5fe623eb8444d44dc0ceb     0 f1c8886ac870b55dc1d27ed21c658c12ca609cc0 5f92955f8f6e6378b690b922986de789985d2307 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/1393  

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,
   [auto_merge] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
);
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 6560.164ms · About: xarray-datasette