home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 648245071

✎ 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
669241341 https://github.com/dogsheep/swarm-to-sqlite/issues/8#issuecomment-669241341 https://api.github.com/repos/dogsheep/swarm-to-sqlite/issues/8 MDEyOklzc3VlQ29tbWVudDY2OTI0MTM0MQ== simonw 9599 2020-08-05T14:55:14Z 2020-08-05T14:55:14Z MEMBER Looks like there's a column that's not consistently there, so the table got created without it. Easiest fix is to add `alter=True` to this line: https://github.com/dogsheep/swarm-to-sqlite/blob/f4a82633da927cde672c9d9af92930bfca2e3ddf/swarm_to_sqlite/utils.py#L94 That will cause `sqlite-utils` to notice if there's a missing column and add it. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error thrown: table photos has no column named hasSticker 648245071  
707332912 https://github.com/dogsheep/swarm-to-sqlite/issues/8#issuecomment-707332912 https://api.github.com/repos/dogsheep/swarm-to-sqlite/issues/8 MDEyOklzc3VlQ29tbWVudDcwNzMzMjkxMg== simonw 9599 2020-10-12T20:35:06Z 2020-10-12T20:35:06Z MEMBER Shipped a fix for this in [swarm-to-sqlite 0.3.2](https://github.com/dogsheep/swarm-to-sqlite/releases/tag/0.3.2). {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error thrown: table photos has no column named hasSticker 648245071  

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