home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 1097101917

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

id ▼ html_url issue_url node_id user created_at updated_at author_association body reactions issue performed_via_github_app
1008227436 https://github.com/simonw/datasette/issues/1588#issuecomment-1008227436 https://api.github.com/repos/simonw/datasette/issues/1588 IC_kwDOBm6k_c48GFRs simonw 9599 2022-01-09T04:23:37Z 2022-01-09T04:25:04Z OWNER Relevant code: https://github.com/simonw/datasette/blob/85849935292e500ab7a99f8fe0f9546e903baad3/datasette/utils/__init__.py#L163-L170 https://github.com/simonw/datasette/blob/85849935292e500ab7a99f8fe0f9546e903baad3/datasette/utils/__init__.py#L195-L204 {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} `explain query plan select` is too strict about whitespace 1097101917  
1008227491 https://github.com/simonw/datasette/issues/1588#issuecomment-1008227491 https://api.github.com/repos/simonw/datasette/issues/1588 IC_kwDOBm6k_c48GFSj simonw 9599 2022-01-09T04:24:09Z 2022-01-09T04:24:09Z OWNER I think this is the fix: ```python re.compile(r"^explain\s+query\s+plan\s+select\b"), ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} `explain query plan select` is too strict about whitespace 1097101917  
1012554208 https://github.com/simonw/datasette/issues/1588#issuecomment-1012554208 https://api.github.com/repos/simonw/datasette/issues/1588 IC_kwDOBm6k_c48Wlng simonw 9599 2022-01-13T22:07:15Z 2022-01-13T22:07:15Z OWNER This works now: https://latest.datasette.io/fixtures?sql=explain+query+plan++select+*+from+facetable {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} `explain query plan select` is too strict about whitespace 1097101917  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
, [performed_via_github_app] TEXT);
CREATE INDEX [idx_issue_comments_issue]
                ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
                ON [issue_comments] ([user]);
Powered by Datasette · Queries took 21.457ms · About: simonw/datasette-graphql