8000 Merge pull request #742 from github/gennaropalma-org-oc · github/platform-samples@fcd5900 · GitHub
[go: up one dir, main page]

Skip to content

Commit fcd5900

Browse files
authored
Merge pull request #742 from github/gennaropalma-org-oc
Create org-list-outside-collaborators-by-repo.graphql
2 parents aee0b2b + 1edb195 commit fcd5900

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
query( $cursor: String) {
2+
organization(login: "ORG_NAME") {
3+
url
4+
login
5+
repositories(first: 100, after: $cursor) {
6+
pageInfo {
7+
endCursor
8+
hasNextPage
9+
}
10+
nodes {
11+
name
12+
collaborators(affiliation: OUTSIDE, first: 100) {
13+
14+
nodes {
15+
url
16+
login
17+
}
18+
edges {
19+
permission
20+
}
21+
}
22+
}
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)
0