stars
2 rows where user = 4693125
This data as json, CSV (advanced)
Suggested facets: starred_at (date)
| Link | user | repo | starred_at |
|---|---|---|---|
| 4693125,197882382 | wmw64 4693125 | healthkit-to-sqlite 197882382 | 2022-06-28T16:53:15Z |
| 4693125,248903544 | wmw64 4693125 | hacker-news-to-sqlite 248903544 | 2022-06-28T16:52:57Z |
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]);