home / github

Menu
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 48517

✎ 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
226314862 MDExOlB1bGxSZXF1ZXN0MjI2MzE0ODYy 367 closed 0 Mark codemirror files as vendored jaap3 48517 GitHub lists datasette as a Javascript project, primarily because of the vendored codemirror files. This is somewhat confusing when you're looking for datasette, knowing it's written in Python. Luckily it's possible exclude certain files from GitHub's code statistics: https://github.com/github/linguist#using-gitattributes 2018-10-27T18:41:25Z 2019-05-03T21:12:09Z 2019-05-03T21:11:20Z 2019-05-03T21:11:20Z 66c87cee0c7344c7877373c60b180c766c206101     0 8e23e4548eedd58b0ff0e69c9a5010fc1a0136d5 6b398c2971801d9a20cfdb7998f59020d5534e22 CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/367    
226315513 MDExOlB1bGxSZXF1ZXN0MjI2MzE1NTEz 368 closed 0 Update installation instructions jaap3 48517 I was writing this as a response to your tweet, but decided I might just make it a pull request. I feel like it might be confusing to those unfamiliar with Python's `-m` flag and the built-in `venv` module to omit the space between the flag and its argument. By adding a space and prefixing the second occurrence of `venv` with a `./` it's maybe a bit clearer what the arguments are and what they do. By also using `python3 -m pip` it becomes even clearer that `-m` is a special flag that makes the python executable do neat things. 2018-10-27T18:52:31Z 2019-05-03T18:18:43Z 2019-05-03T18:18:42Z 2019-05-03T18:18:42Z f853d5592ec7f901a50381de22a26a9ab098f885     0 8f8d6072820a13e2c698d9c326998b63810779c6 553314dcd699a84aa7cc806377150ca0d57a6024 CONTRIBUTOR datasette 107914493 https://github.com/simonw/datasette/pull/368    

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