home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 11750960

✎ 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
400100323 MDExOlB1bGxSZXF1ZXN0NDAwMTAwMzIz 3944 closed 0 implement a more threadsafe call to colorbar apatlpo 11750960 - [ ] Xref #1889 - [ ] Tests added - [ ] Passes `isort -rc . && black . && mypy . && flake8` - [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API If you think this is relevant, I'll go ahead and start working on the items above, even though I'm not sure new tests are needed. 2020-04-07T07:51:28Z 2020-04-09T07:01:12Z 2020-04-09T06:26:57Z 2020-04-09T06:26:57Z e4f7900886e0be7fbe16a86d38604ce764008dda     0 cc98a00f8a40a733ac62cb0bbe7cbe051aca63ef 604835603c83618dbe101331813cc6ae428d8be1 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3944  
415324850 MDExOlB1bGxSZXF1ZXN0NDE1MzI0ODUw 4048 closed 0 improve to_zarr doc about chunking apatlpo 11750960 - [X] follows #4046 - [X] Passes `isort -rc . && black . && mypy . && flake8` I'm not sure the last point is really necessary for this PR, is it? 2020-05-08T16:43:09Z 2020-05-20T18:55:38Z 2020-05-20T18:55:33Z 2020-05-20T18:55:32Z 484d1ce5ff8969b6ca6fa942b344379725f33b9c     0 271fc37eb746e1e68370331e50a3be27fb562817 f38b0c15aa90c6812118047ae637ee67048db51f CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4048  

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