home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 1385026210

✎ 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
1258738435 https://github.com/simonw/datasette/issues/1819#issuecomment-1258738435 https://api.github.com/repos/simonw/datasette/issues/1819 IC_kwDOBm6k_c5LBtMD simonw 9599 2022-09-26T22:52:19Z 2022-09-26T22:52:19Z OWNER This is a good idea. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Preserve query on timeout 1385026210  
1258746600 https://github.com/simonw/datasette/issues/1819#issuecomment-1258746600 https://api.github.com/repos/simonw/datasette/issues/1819 IC_kwDOBm6k_c5LBvLo simonw 9599 2022-09-26T23:05:40Z 2022-09-26T23:05:40Z OWNER Implementing it like this, so at least you can copy and paste the SQL query back out again: <img width="796" alt="image" src="https://user-images.githubusercontent.com/9599/192395953-48512c94-10e0-4cf8-8ae5-b9e65e3d7b0f.png"> I'm not doing a full textarea because this error can be raised in multiple places, including on the table page itself. It's not just an error associated with the manual query page. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Preserve query on timeout 1385026210  
1258754105 https://github.com/simonw/datasette/issues/1819#issuecomment-1258754105 https://api.github.com/repos/simonw/datasette/issues/1819 IC_kwDOBm6k_c5LBxA5 simonw 9599 2022-09-26T23:16:15Z 2022-09-26T23:16:15Z OWNER Demo: https://latest.datasette.io/_memory?sql=with+recursive+counter(x)+as+(%0D%0A++select+0%0D%0A++++union%0D%0A++select+x+%2B+1+from+counter%0D%0A)%2C%0D%0Ablah+as+(select+*+from+counter+limit+5000000)%0D%0Aselect+count(*)+from+blah {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Preserve query on timeout 1385026210  

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