stars
2 rows where user = 85883100
This data as json, CSV (advanced)
Suggested facets: starred_at (date)
| Link | user | repo | starred_at |
|---|---|---|---|
| 85883100,207052882 | ghbook 85883100 | github-to-sqlite 207052882 | 2023-08-06T05:57:24Z |
| 85883100,248903544 | ghbook 85883100 | hacker-news-to-sqlite 248903544 | 2023-08-06T05:38:49Z |
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]);