Skip to content

Commit 583b365

Browse files
authored
Members with their scim identity in org
GraphQL query showing organization members with scimidentity
1 parent cb48a92 commit 583b365

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

0 commit comments

Comments
 (0)