home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 6049169

✎ 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
176519823 MDExOlB1bGxSZXF1ZXN0MTc2NTE5ODIz 2003 closed 0 Extraneous full stop in 88 char warning edoddridge 6049169 The warning introduced in #1835 has an extraneous full stop. This PR removes it. 2018-03-21T15:45:50Z 2018-03-21T16:25:03Z 2018-03-21T16:24:59Z 2018-03-21T16:24:59Z 85e240e8b9ff748493a279f7a3cc605bad001e26     0 77b547f4b518d27c911a3a6fd77a2451250ba4b9 6456df4e9d103a75231d0ea43bb87250ad8745a6 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2003  
199523539 MDExOlB1bGxSZXF1ZXN0MTk5NTIzNTM5 2268 closed 0 Fix resample docstring seasonal average example edoddridge 6049169 The example code snippet in the `resample` docstring did not produced the desired result, and the output from running the code did not match the provided output. This PR fixes both issues. Given that there are no code changes I haven't updated `whats-new.rst`, but can if that would be appropriate. - [x] Closes #2232 2018-07-05T16:24:20Z 2018-07-05T19:01:18Z 2018-07-05T19:01:17Z 2018-07-05T19:01:17Z 448c3f1ae919f94a2b594eaeb91c6fd950eca43f     0 70649feb447215afdb2648a4ba3e75fc2d5ba036 63cc96484270dee83e92391e49ad76b8ef3b40b3 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2268  

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