home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 82988

✎ 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 repo url merged_by auto_merge
161982711 MDExOlB1bGxSZXF1ZXN0MTYxOTgyNzEx 178 closed 0 If metadata exists, add it to heroku launch command psychemedia 82988 The heroku build does seem to make use of any provided `metadata.json` file. Add the `--metadata` switch to the Heroku web launch command if a `metadata.json` file is available. Addresses: https://github.com/simonw/datasette/issues/177 2018-01-09T21:42:21Z 2018-01-15T09:42:46Z 2018-01-14T21:05:16Z 2018-01-14T21:05:16Z 3a56a2cd7eea5d477d5d936b01098be5cba0d98e     0 1bc9ed98c4f4fd91b70560ac8f507a2fddbd8317 306e1c6ac4f00cc25d676a6ee660938f5b27427c CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/178    
509590205 MDExOlB1bGxSZXF1ZXN0NTA5NTkwMjA1 1049 closed 0 Add template block prior to extra URL loaders psychemedia 82988 To handle packages that require Javascript state setting prior to loading a package (eg [`thebelab`](https://thebelab.readthedocs.io/en/latest/examples/minimal_example.html), provide a template block before the URLs are loaded. 2020-10-25T13:08:55Z 2020-10-29T09:20:52Z 2020-10-29T09:20:34Z   99f994b14e2dbe22fda18b67dd5c824d359443fb     0 50a743ad35684f09d3c3880f6af2019e59271237 42f4851e3e7885f1092f104d6c883cea40b12f02 CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/1049    

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,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
, [auto_merge] TEXT);
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 288.887ms · About: simonw/datasette-graphql