Skip to content

Instantly share code, notes, and snippets.

@li-boxuan
Last active August 14, 2018 00:40
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 li-boxuan/0c370cca038bf706200b070f1dfa9921 to your computer and use it in GitHub Desktop.
Save li-boxuan/0c370cca038bf706200b070f1dfa9921 to your computer and use it in GitHub Desktop.
Get a list of orgs which you have been contributed to on GitHub
query($login: String!, $before: String){
user(login:$login) {
repositoriesContributedTo(last: 100, before: $before) {
pageInfo {
startCursor
hasPreviousPage
}
nodes {
owner {
login
}
name
}
}
}
}
@li-boxuan
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment