# GraphQL query to GitHub for teams
query getInfo($organization: String!) {
organization(login: $organization) {
teams(first: 100) {
totalCount
edges {
node {
name
members(first: 100) {
totalCount
edges {
memberAccessUrl
node {
name
url
email
login
}
}
}
url
}
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# get-teams.sh
Vea el script ULL-MFP-AET/ull-mfp-aet.github.io/blob/main/get-teams.sh (opens new window)