Last active
October 16, 2019 11:54
-
-
Save artismarti/a40b99cd48eb17ee9e2c6df9bced01cb to your computer and use it in GitHub Desktop.
Last 100 repos for an org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query ($login: String!) { | |
organization(login: $login) { | |
name | |
url | |
repositories(last: 100) { | |
nodes { | |
name | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment