home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

7 rows where issue = 1473481262 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 · 7 ✖

issue 1

  • Hacker News Datasette write demo · 7 ✖

author_association 1

  • OWNER 7
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions issue performed_via_github_app
1335966329 https://github.com/simonw/datasette/issues/1928#issuecomment-1335966329 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5PoTp5 simonw 9599 2022-12-02T23:47:11Z 2022-12-02T23:47:11Z OWNER

Wrote about this extensively here: https://simonwillison.net/2022/Dec/2/datasette-write-api/

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870889 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870889 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wp simonw 9599 2022-12-02T21:41:09Z 2022-12-02T21:41:09Z OWNER

Got it working!

https://simon.datasette.cloud/data/hacker_news_posts

https://github.com/simonw/scrape-hacker-news-by-domain/blob/main/submit-to-datasette-cloud.sh

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870887 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870887 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wn simonw 9599 2022-12-02T21:25:16Z 2022-12-02T21:25:16Z OWNER

Here's the change that should submit data to Datasette Cloud: https://github.com/simonw/scrape-hacker-news-by-domain/commit/848bb7e835a9fb87cd656362591835179cd1dc1b

I ran delete from hacker_news_posts against my instance so https://simon.datasette.cloud/data/hacker_news_posts is now empty.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870884 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870884 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wk simonw 9599 2022-12-02T21:19:58Z 2022-12-02T21:19:58Z OWNER

But until I fix this issue: - https://github.com/simonw/datasette/issues/1927

I need to insert freshly scraped data like this:

```bash export ROWS=$( jq -n --argjson rows "$(cat simonwillison-net.json)" \ '{ "rows": $rows, "replace": true }' )

curl -X POST \ https://simon.datasette.cloud/data/hacker_news_posts/-/insert \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $DS_TOKEN" \ -d $ROWS ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870883 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870883 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wj simonw 9599 2022-12-02T21:19:10Z 2022-12-02T21:19:10Z OWNER

I created the hacker_news_posts table like this:

```bash export ROWS=$( jq -n --argjson rows "$(cat simonwillison-net.json)" \ '{ "table": "hacker_news_posts", "rows": $rows, "pk": "id", "replace": true }' )

Use curl to POST some JSON to a URL

curl -X POST \ https://simon.datasette.cloud/data/-/create \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $DS_TOKEN" \ -d $ROWS ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870879 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870879 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wf simonw 9599 2022-12-02T21:18:25Z 2022-12-02T21:18:25Z OWNER

This is the SQL view for the atom feed: sql CREATE VIEW hacker_news_posts_atom as select id as atom_id, title as atom_title, url, commentsUrl as atom_link, dt || 'Z' as atom_updated, 'Submitter: ' || submitter || ' - ' || points || ' points, ' || numComments || ' comments' as atom_content from hacker_news_posts order by dt desc limit 100;

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  
1335870877 https://github.com/simonw/datasette/issues/1928#issuecomment-1335870877 https://api.github.com/repos/simonw/datasette/issues/1928 IC_kwDOBm6k_c5Pn8Wd simonw 9599 2022-12-02T21:17:50Z 2022-12-02T21:17:50Z OWNER

https://simon.datasette.cloud/data/hacker_news_posts_atom.atom is working now.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
Hacker News Datasette write demo 1473481262  

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 565.034ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows