home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 127565

✎ 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
719175593 MDExOlB1bGxSZXF1ZXN0NzE5MTc1NTkz 1447 closed 0 Remove underscore from search mode parameter name wragge 127565 The fulltext search documentation refers to the parameter as `searchmode` but the `metadata.json` example uses `search_mode`. The latter doesn't actually seem to work. 2021-08-25T01:28:04Z 2021-08-25T01:28:58Z 2021-08-25T01:28:58Z 2021-08-25T01:28:58Z 93c3a7ffbfb3378f743ebce87d033cf1ce7689e0     0 86f41bf3663e786a83b5aaa7d9a4ec452b04e2c0 92a99d969c01633dba14cceebeda65daaedaec17 CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/1447    
917185800 PR_kwDOBm6k_c42qyUI 1717 closed 0 Add timeout option to Cloudrun build wragge 127565 I've found that the Cloudrun build phase often hits a timeout limit with large databases. I believe the default timeout is 10 minutes. This pull request just adds a `--timeout` option to the cloudrun `publish` command and passes the value on to the build step. 2022-04-23T11:51:21Z 2022-04-24T14:03:08Z 2022-04-24T14:03:08Z 2022-04-24T14:03:08Z 3001e1e394b6cb605c2cd81eed671a7da419c1b3     0 9b9a314a84453cec5ad6c886351ef3df9d47a5a4 d57c347f35bcd8cff15f913da851b4b8eb030867 CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/1717    

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 85.79ms · About: simonw/datasette-graphql