home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where "created_at" is on date 2020-09-20 and user = 9599 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

issue 4

  • table.extract(...) method and "sqlite-utils extract" command 1
  • Add support for porter stemming in FTS 1
  • Timeline view 1
  • table.enable_fts(..., replace=True) 1

author_association 2

  • OWNER 3
  • MEMBER 1

user 1

  • simonw · 4 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions issue performed_via_github_app
695851036 https://github.com/dogsheep/dogsheep-beta/issues/16#issuecomment-695851036 https://api.github.com/repos/dogsheep/dogsheep-beta/issues/16 MDEyOklzc3VlQ29tbWVudDY5NTg1MTAzNg== simonw 9599 2020-09-20T23:34:57Z 2020-09-20T23:34:57Z MEMBER

Really basic starting point is to add facet by date.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Timeline view 694493566  
695839557 https://github.com/simonw/sqlite-utils/issues/160#issuecomment-695839557 https://api.github.com/repos/simonw/sqlite-utils/issues/160 MDEyOklzc3VlQ29tbWVudDY5NTgzOTU1Nw== simonw 9599 2020-09-20T21:37:03Z 2020-09-20T21:37:03Z OWNER

Should this support ignore=True as well? I'm tempted to skip that - I think replace=True is more useful because it implies "ignore if the options are already the same, but replace if they are different".

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
table.enable_fts(..., replace=True) 705190723  
695698227 https://github.com/simonw/sqlite-utils/issues/42#issuecomment-695698227 https://api.github.com/repos/simonw/sqlite-utils/issues/42 MDEyOklzc3VlQ29tbWVudDY5NTY5ODIyNw== simonw 9599 2020-09-20T04:27:26Z 2020-09-20T04:28:26Z OWNER

This is going to need #114 (the transform_table() method) in order to convert string columns into integer foreign key columns.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
table.extract(...) method and "sqlite-utils extract" command 470345929  
695695776 https://github.com/simonw/sqlite-utils/issues/68#issuecomment-695695776 https://api.github.com/repos/simonw/sqlite-utils/issues/68 MDEyOklzc3VlQ29tbWVudDY5NTY5NTc3Ng== simonw 9599 2020-09-20T04:25:47Z 2020-09-20T04:25:47Z OWNER

This is a dupe of #130

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Add support for porter stemming in FTS 531583658  

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 828.156ms · About: github-to-sqlite