stars
2 rows where user = 231785
This data as json, CSV (advanced)
Suggested facets: starred_at (date)
| Link | user | repo | starred_at |
|---|---|---|---|
| 231785,206156866 | mnemnion 231785 | twitter-to-sqlite 206156866 | 2019-12-21T20:27:50Z |
| 231785,248903544 | mnemnion 231785 | hacker-news-to-sqlite 248903544 | 2022-04-02T02:28:23Z |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [stars] (
[user] INTEGER REFERENCES [users]([id]),
[repo] INTEGER REFERENCES [repos]([id]),
[starred_at] TEXT,
PRIMARY KEY ([user], [repo])
);
CREATE INDEX [idx_stars_repo]
ON [stars] ([repo]);
CREATE INDEX [idx_stars_user]
ON [stars] ([user]);