We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38692a4 commit 6935743Copy full SHA for 6935743
README.md
@@ -40,16 +40,16 @@ from the current GitHub API:
40
41
```sql
42
FROM 'https://data.gharchive.org/2015-01-01-15.json.gz'
43
-| SELECT union(repo.name) AS repo, actor.login AS user
+| SELECT union(repo.name) AS repos, actor.login AS user
44
GROUP BY user
45
- ORDER BY len(repo) DESC
+ ORDER BY len(repos) DESC
46
LIMIT 5
47
| FORK (
48
=> FROM eval(f'https://api.github.com/users/{user}')
49
| SELECT VALUE {user:login,created_at:time(created_at)}
50
=> PASS
51
)
52
-| JOIN USING (user)
+| JOIN USING (user) repos
53
```
54
55
## Super JSON
0 commit comments