home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 17001470

✎ 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
594718345 MDExOlB1bGxSZXF1ZXN0NTk0NzE4MzQ1 5045 closed 0 Allow assigning values to a subset of a dataset matzegoebel 17001470 Both, positional and label-based (with .loc) indexing using a dictionary as key are implemented. All variables in the dataset are updated one by one with the given value at the given location. If the given value is also a dataset, corresponding variables in the given value and in the dataset to be changed are selected. Tests for all cases are added. - [x] Closes #3015 - [x] Tests added - [x] Passes `pre-commit run --all-files` - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] Documentation still needs to be updated 2021-03-17T13:30:55Z 2021-05-25T14:14:24Z 2021-05-25T08:12:53Z 2021-05-25T08:12:52Z de6144c0e8c8fc316cfc412a2057af4d1a04edfd     0 031c3a9183780a4fb7d143c078acc78a53d71d11 071da2a900702d65c47d265192bc7e424bb57932 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5045  
653491804 MDExOlB1bGxSZXF1ZXN0NjUzNDkxODA0 5378 closed 0 Dataset subset assignments in doc matzegoebel 17001470 Added explanation of new feature (PR #5045) that allows assigning values to a subset of a dataset to the documentation. 2021-05-26T09:28:16Z 2021-06-13T11:18:44Z 2021-06-12T17:46:10Z 2021-06-12T17:46:10Z bdba98143800743f6e7d38bac79a3dfe119ad034     0 a6cef85c0a76d949980699c7fde6e7a6cebeebde a6a1e48b57499f91db7e7c15593aadc7930020e8 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5378  

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