Skip to content

Instantly share code, notes, and snippets.

@crcastle
Created March 15, 2017 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crcastle/16c82a6458c68de760c6a416d31cc329 to your computer and use it in GitHub Desktop.
Save crcastle/16c82a6458c68de760c6a416d31cc329 to your computer and use it in GitHub Desktop.
Google BigQuery SQL query for yarn.lock
SELECT
repo_name,
COUNT(repo_name) AS count
FROM
[bigquery-public-data:github_repos.files]
WHERE
path LIKE 'yarn.lock'
GROUP BY
Repo_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment