Last active
September 20, 2022 15:51
-
-
Save malantin/cf4e35c5a72e085fd5136b1f1d70e574 to your computer and use it in GitHub Desktop.
Get users for repos in orgs
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
{ | |
organization(login: "OrgName") { | |
repositories(first: 100, after: null) { | |
nodes { | |
id | |
nameWithOwner | |
description | |
url | |
collaborators(first: 20, after: null) { | |
edges { | |
permission | |
node { | |
id | |
name | |
login | |
} | |
} | |
pageInfo { | |
hasNextPage | |
endCursor | |
} | |
} | |
} | |
pageInfo { | |
hasNextPage | |
endCursor | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment