Skip to content

Commit 021419b

Browse files
authored
Create users-in-org-with-sso.graphql
Returns members of an organization and their associated saml identity. If no saml identity, returns null.
1 parent fb8ee25 commit 021419b

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)