Skip to content

Commit cb48a92

Browse files
authored
Merge pull request #266 from github/hollywood/add-unified-identity-query
Add query to list member email and logins for an Enterprise
2 parents 3571ac6 + 8644532 commit cb48a92

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This query will print a list of all SSO members for a Unified Identity Enterprise
2+
3+
query listSSOUserIdentities ($enterpriseName:String!) {
4+
enterprise(slug: $enterpriseName) {
5+
ownerInfo {
6+
samlIdentityProvider {
7+
externalIdentities(first: 100) {
8+
totalCount
9+
edges {
10+
node {
11+
guid
12+
samlIdentity {
13+
nameId
14+
}
15+
user {
16+
login
17+
}
18+
}
19+
}
20+
pageInfo {
21+
hasNextPage
22+
endCursor
23+
}
24+
}
25+
}
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)