pull_requests
1 row where user = 90768774
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1467136979 | PR_kwDOAMm_X85XcrvT | 8057 | closed | 0 | Count documentation | Articoking 90768774 | <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #8055 - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` I've changed the example to include a 0 value which clearly shows that only NA values are ignored in the count. I've only modified the "see also" section for `count` since as mentioned in #8055 it is a bit of an outlier among the aggregation methods. I believe that this is not a long term fix since the single line summary of the method is of little use, but at least with this no one will have to take a look at the source code to quickly get what `count` does. Feel free to correct any problems or suggest any changes, as I am quite new to contributing to projects like this and have little idea of what I'm doing :sweat_smile: | 2023-08-08T15:59:03Z | 2023-08-09T13:50:58Z | 2023-08-09T13:50:54Z | 2023-08-09T13:50:54Z | eceec5f7bbbe93b2f24f49af6361a135ae72e2e4 | 0 | cc57e9115b62665dc20eb7ca960d0194547d26e6 | 58924643cdf2c89fc7eb6bea24331781ef0b49b7 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/8057 |
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]);