Skip to content

Commit 6498e32

Browse files
authored
Members with their scim identity in enterprise
GraphQL query showing enterprise members with scimidentity
1 parent 583b365 commit 6498e32

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+
query ($enterprise: String!) {
2+
enterprise(slug: $enterprise) {
3+
organizations(first: 100) {
4+
nodes {
5+
samlIdentityProvider {
6+
ssoUrl
7+
externalIdentities(first: 100) {
8+
edges {
9+
node {
10+
user {
11+
login
12+
email
13+
}
14+
scimIdentity {
15+
username
16+
}
17+
}
18+
}
19+
}
20+
}
21+
}
22+
}
23+
}
24+
}
25+
26+
variables {
27+
"enterprise": "enterprise"
28+
}

0 commit comments

Comments
 (0)