pull_requests
1 row where user = 8241481
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
408844574 | MDExOlB1bGxSZXF1ZXN0NDA4ODQ0NTc0 | 4003 | closed | 0 | xarray.open_mzar: open multiple zarr files (in parallel) | Mikejmnez 8241481 | This is associated with #3995 and somewhat mentioned in #3668. This is, emulating ```xarray.open_mfdataset```, it allows xarray to read multiple zarr files from a glob or a list of files pointing to a zarr store. It follows the code for ```xarray.open_mfdataset``` and the description to the function is the same, as they do the same thing but for respective files type. | 2020-04-25T04:08:50Z | 2020-09-22T05:40:31Z | 2020-09-22T05:40:31Z | e3d65af2812e8800a8c6179d2e14a0b832a62891 | 0 | 62893abeb9ae29221ab9a635bd18de903a930e33 | 7bf9df9d75c40bcbf2dd28c47204529a76561a3f | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/4003 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);