We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3571ac6 + 8644532 commit cb48a92Copy full SHA for cb48a92
graphql/queries/enterprise-sso-member-details.graphql
@@ -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