Skip to content

Commit c1d4f3d

Browse files
author
Jared Murrell
authored
Merge pull request github#302 from github/query-users-in-org-with-sso
GraphQL query for Users in an Organization with SSO enabled
2 parents fb8ee25 + 021419b commit c1d4f3d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
query listSSOUserIdentities ($organizationName:String!) {
2+
organization(login: $organizationName) {
3+
samlIdentityProvider {
4+
externalIdentities(first: 100) {
5+
totalCount
6+
edges {
7+
node {
8+
guid
9+
samlIdentity {
10+
nameId
11+
}
12+
user {
13+
login
14+
}
15+
}
16+
}
17+
pageInfo {
18+
hasNextPage
19+
endCursor
20+
}
21+
}
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)