home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where issue = 1108235694, "updated_at" is on date 2022-01-19 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)

user 1

  • simonw · 4 ✖

issue 1

  • A proper favicon · 4 ✖

author_association 1

  • OWNER 4
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions issue performed_via_github_app
1016589519 https://github.com/simonw/datasette/issues/1603#issuecomment-1016589519 https://api.github.com/repos/simonw/datasette/issues/1603 IC_kwDOBm6k_c48l-zP simonw 9599 2022-01-19T15:36:38Z 2022-01-19T15:36:38Z OWNER

Also people can use a custom base template and link to a custom favicon if they want to.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
A proper favicon 1108235694  
1016589140 https://github.com/simonw/datasette/issues/1603#issuecomment-1016589140 https://api.github.com/repos/simonw/datasette/issues/1603 IC_kwDOBm6k_c48l-tU simonw 9599 2022-01-19T15:36:16Z 2022-01-19T15:36:16Z OWNER

For the moment then I will hard-code a new favicon and leave it to ASGI plugins if people want to define their own.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
A proper favicon 1108235694  
1016588326 https://github.com/simonw/datasette/issues/1603#issuecomment-1016588326 https://api.github.com/repos/simonw/datasette/issues/1603 IC_kwDOBm6k_c48l-gm simonw 9599 2022-01-19T15:35:33Z 2022-01-19T15:35:33Z OWNER

I don't think abusing the template loader mechanism for this will work: Jinja provides an API for loading text templates, but I don't think it can be sensibly abused to open binary image files instead. Loaded code is here: https://github.com/pallets/jinja/blob/main/src/jinja2/loaders.py

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
A proper favicon 1108235694  
1016579661 https://github.com/simonw/datasette/issues/1603#issuecomment-1016579661 https://api.github.com/repos/simonw/datasette/issues/1603 IC_kwDOBm6k_c48l8ZN simonw 9599 2022-01-19T15:27:05Z 2022-01-19T15:27:05Z OWNER

I'd like this to be customizable. I'm going to load it from the template loading system such that a custom favicon for a specific instance can be dropped in using a file in templates/.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
A proper favicon 1108235694  

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