home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where "updated_at" is on date 2022-07-20 and user = 9599 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

issue 2

  • feature request: pivot command 2
  • in extract code, check equality with IS instead of = for nulls 1

user 1

  • simonw · 3 ✖

author_association 1

  • OWNER 3
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions issue performed_via_github_app
1190686273 https://github.com/simonw/sqlite-utils/pull/455#issuecomment-1190686273 https://api.github.com/repos/simonw/sqlite-utils/issues/455 IC_kwDOCGYnMM5G-G5B simonw 9599 2022-07-20T19:46:15Z 2022-07-20T19:46:15Z OWNER

Can you add a new test for this? Something derived from the example in #423 would work great.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
in extract code, check equality with IS instead of = for nulls 1309542173  
1190578687 https://github.com/simonw/sqlite-utils/issues/456#issuecomment-1190578687 https://api.github.com/repos/simonw/sqlite-utils/issues/456 IC_kwDOCGYnMM5G9sn_ simonw 9599 2022-07-20T17:50:50Z 2022-07-20T17:50:50Z OWNER

Wow https://tidyr.tidyverse.org/articles/pivot.html is fascinating.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
feature request: pivot command 1310243385  
1189698289 https://github.com/simonw/sqlite-utils/issues/456#issuecomment-1189698289 https://api.github.com/repos/simonw/sqlite-utils/issues/456 IC_kwDOCGYnMM5G6Vrx simonw 9599 2022-07-20T01:13:47Z 2022-07-20T01:13:47Z OWNER

Really interesting idea! Can you flesh out what this might look like, maybe with a before and after example schema?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
feature request: pivot command 1310243385  

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