github / github/platform-samples
find nameId of specific user with a given loginid in org
- 主要言語
- Shell
- スター
- 2.2k
- フォーク
- 1.9k
- 平均マージ
- 7日 19時間
- マージ済み PR(30日)
- 1
説明
The query [1] will list all users with samlIds in the org, but how can I craft the query to search for a user with a specific `login`?
[1]
```
query Users($org: String!, $first: Int = 100, $after: String) {
organization(login: $org) {
samlIdentityProvider {
externalIdentities(first: $first, after: $after) {
edges {
node {
guid,
samlIdentity {
nameId
}
user {
login
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}
```
コントリビューションガイド
評価
この issue はまだ評価されていません。