home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 706735200

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/782#issuecomment-706735200 https://api.github.com/repos/simonw/datasette/issues/782 706735200 MDEyOklzc3VlQ29tbWVudDcwNjczNTIwMA== 9599 2020-10-11T17:02:11Z 2020-10-11T17:14:51Z OWNER Since the total count can be expensive to calculate, I'm inclined to make that an opt-in extra - maybe `?_extra=count`. Based on that, the default JSON shape could look something like this: ```json { "rows": [{"id": 1}, {"id": 2}], "next": "2", "next_url": "/db/table?_next=2" } ``` And with `?_extra=count`: ```json { "rows": [{"id": 1}, {"id": 2}], "next": "2", "next_url": "/db/table?_next=2", "count": 31 } ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 627794879  
Powered by Datasette · Queries took 2.337ms