stars
2 rows where user = 16629053
This data as json, CSV (advanced)
Suggested facets: starred_at (date)
| Link | user | repo | starred_at |
|---|---|---|---|
| 16629053,140912432 | bglopez 16629053 | sqlite-utils 140912432 | 2022-09-23T05:55:13Z |
| 16629053,248903544 | bglopez 16629053 | hacker-news-to-sqlite 248903544 | 2021-02-23T04:24:54Z |
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]);