home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

6 rows where issue = 907645813

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: user, author_association, 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
860063190 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-860063190 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 MDEyOklzc3VlQ29tbWVudDg2MDA2MzE5MA== stiles 232237 2021-06-12T14:46:44Z 2021-06-12T14:46:44Z NONE I'm having the same issue (same versions of python and twitter-to-sqlite). It's the `user-timeline` command. Other commands are working. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  
902327457 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-902327457 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 IC_kwDODEm0Qs41yGyh simonw 9599 2021-08-19T23:53:25Z 2021-08-19T23:53:25Z MEMBER I'm getting this too. Looking into it now. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  
902328369 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-902328369 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 IC_kwDODEm0Qs41yHAx simonw 9599 2021-08-19T23:56:26Z 2021-08-19T23:56:26Z MEMBER https://developer.twitter.com/en/docs/twitter-api/v1/tweets/timelines/api-reference/get-statuses-user_timeline says the API has been replaced by the new v2 one, but it should still work - and the `since_id` parameter is still documented on that page. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  
902328760 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-902328760 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 IC_kwDODEm0Qs41yHG4 simonw 9599 2021-08-19T23:57:41Z 2021-08-19T23:57:41Z MEMBER Weird, added debug code and got this: `{'screen_name': 'simonw', 'count': 200, 'since_id': 'False', 'tweet_mode': 'extended'}` - so maybe it's a `twitter-to-sqlite` bug where somehow the string `False` is being passed somewhere. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  
902329455 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-902329455 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 IC_kwDODEm0Qs41yHRv simonw 9599 2021-08-19T23:59:56Z 2021-08-19T23:59:56Z MEMBER This looks like the bug to me: https://github.com/dogsheep/twitter-to-sqlite/blob/197e69cec40052c423a5ed071feb5f7cccea41b9/twitter_to_sqlite/cli.py#L239-L241 `type=str, default=False` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  
902329884 https://github.com/dogsheep/twitter-to-sqlite/issues/57#issuecomment-902329884 https://api.github.com/repos/dogsheep/twitter-to-sqlite/issues/57 IC_kwDODEm0Qs41yHYc simonw 9599 2021-08-20T00:01:05Z 2021-08-20T00:01:05Z MEMBER Maybe Click changed something which meant that this broke things when it didn't used to? {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Error: Use either --since or --since_id, not both 907645813  

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