home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 583970196

✎ 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
603544779 https://github.com/simonw/datasette/issues/701#issuecomment-603544779 https://api.github.com/repos/simonw/datasette/issues/701 MDEyOklzc3VlQ29tbWVudDYwMzU0NDc3OQ== simonw 9599 2020-03-24T22:50:05Z 2020-03-24T22:50:05Z OWNER https://css-tricks.com/webkit-html5-search-inputs/ talks about this. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Search box CSS doesn't look great on OS X Safari 583970196  
603545257 https://github.com/simonw/datasette/issues/701#issuecomment-603545257 https://api.github.com/repos/simonw/datasette/issues/701 MDEyOklzc3VlQ29tbWVudDYwMzU0NTI1Nw== simonw 9599 2020-03-24T22:51:29Z 2020-03-24T22:51:29Z OWNER It looks like the problem is that the `padding: 9px 4px` rule is being ignored. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Search box CSS doesn't look great on OS X Safari 583970196  
603547065 https://github.com/simonw/datasette/issues/701#issuecomment-603547065 https://api.github.com/repos/simonw/datasette/issues/701 MDEyOklzc3VlQ29tbWVudDYwMzU0NzA2NQ== simonw 9599 2020-03-24T22:56:47Z 2020-03-24T22:56:47Z OWNER From the comments on that css-tricks article, this appears to work: ```css input[type=search] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration { display: none; } ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Search box CSS doesn't look great on OS X Safari 583970196  

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