Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ from the current GitHub API:

```sql
FROM 'https://data.gharchive.org/2015-01-01-15.json.gz'
| SELECT union(repo.name) AS repo, actor.login AS user
| SELECT union(repo.name) AS repos, actor.login AS user
GROUP BY user
ORDER BY len(repo) DESC
ORDER BY len(repos) DESC
LIMIT 5
| FORK (
=> FROM eval(f'https://api.github.com/users/{user}')
| SELECT VALUE {user:login,created_at:time(created_at)}
=> PASS
)
| JOIN USING (user)
| JOIN USING (user) repos
```

## Super JSON
Expand Down