pull_requests
2 rows where user = 280924
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
206113347 | MDExOlB1bGxSZXF1ZXN0MjA2MTEzMzQ3 | 2339 | closed | 0 | Use sorted fixtures to ensure that test gathering is consistent. | ttung 280924 | pytest-xdist expects that test gathering produces the same results and in the same order. Because sets, prior to python 3.7, do not guarantee ordering, this can cause pytest -n (from pytest-xdist) to fail. - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API (remove if this change should not be visible to users, e.g., if it is an internal clean-up, or if this is part of a larger project that will be documented later) | 2018-08-03T19:01:28Z | 2018-08-06T14:57:16Z | 2018-08-06T14:57:16Z | 2018-08-06T14:57:16Z | b6a5af3c16f71be18968f849e4db845e946d5d5c | 0 | 8e700722443b6bd6bf8dd4ec3b0b2a93f832b8df | 56381ef444c5e699443e8b4e08611060ad5c9507 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/2339 | ||||
319419548 | MDExOlB1bGxSZXF1ZXN0MzE5NDE5NTQ4 | 3325 | closed | 0 | Fix DataArray.to_netcdf type annotation | ttung 280924 | It calls DataSet.to_netcdf, which returns Union[bytes, "Delayed", None]. So this should as well. | 2019-09-19T19:01:56Z | 2019-09-27T05:45:34Z | 2019-09-27T05:45:26Z | 2019-09-27T05:45:26Z | 6ece6a1cf424c3080e216fad8fc8058d3b70aadc | 0 | 3fe74666b62466d2be99036203dd1891bd4eebec | df259331c5b66088f67738338e0b1b3f940e09c2 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/3325 |
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]);