Skip to content

Commit 7d53896

Browse files
authored
Create org-list-outside-collaborators-by-repo.graphql
1 parent aee0b2b commit 7d53896

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

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: "another-boring-org") {
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)