home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 31126826

✎ 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
387814954 MDExOlB1bGxSZXF1ZXN0Mzg3ODE0OTU0 3860 closed 0 Fix multi-index with categorical values. mancellin 31126826 @fujiisoup Would you mind reviewing this PR? The bug was actually straightforward. - [X] Closes #3674 - [X] Tests added - [X] Passes `isort -rc . && black . && mypy . && flake8` - [X] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2020-03-13T14:44:59Z 2020-03-13T19:55:07Z 2020-03-13T19:55:07Z 2020-03-13T19:55:07Z ae03616dbd30544cadf4ff85e66cffb582ab3481     0 14601f2cb66ee05952b8bf151950f0e9299a065f 0d95ebac19faa3af25ac369d1e8177535022c0d9 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3860  
404483176 MDExOlB1bGxSZXF1ZXN0NDA0NDgzMTc2 3976 closed 0 Proposal for better error message about in-place operation mancellin 31126826 Trying to make error message slightly more informative when the user might expect automatic alignment with in-place operation. - [X] Closes #3910 - [ ] Tests added - [X] Passes `isort -rc . && black . && mypy . && flake8` - [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2020-04-16T15:46:56Z 2020-06-24T14:41:06Z 2020-06-24T14:41:06Z 2020-06-24T14:41:06Z fb5fe79a2881055065cc2c0ed3f49f5448afdf32     0 a82b0232386de1ee297ce7d0fd37a154041244b0 2c77eb531b6689f9f1d2adbde0d8bf852f1f7362 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3976  

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 4242.119ms · About: xarray-datasette