Skip to content

Commit

Permalink
Merge pull request #742 from github/gennaropalma-org-oc
Browse files Browse the repository at this point in the history
Create org-list-outside-collaborators-by-repo.graphql
  • Loading branch information
sn2b authored Oct 23, 2024
2 parents aee0b2b + 1edb195 commit fcd5900
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions graphql/queries/org-list-outside-collaborators-by-repo.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
query( $cursor: String) {
organization(login: "ORG_NAME") {
url
login
repositories(first: 100, after: $cursor) {
pageInfo {
endCursor
hasNextPage
}
nodes {
name
collaborators(affiliation: OUTSIDE, first: 100) {

nodes {
url
login
}
edges {
permission
}
}
}
}
}
}

0 comments on commit fcd5900

Please sign in to comment.