Guest User

Untitled

a guest
Jul 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. query($login: String!) {
  2. organization(login: $login) {
  3. ... on Organization {
  4. samlIdentityProvider {
  5. externalIdentities(first: 30) {
  6. edges {
  7. node {
  8. samlIdentity {
  9. nameId
  10. }
  11. user {
  12. login
  13. }
  14. }
  15. }
  16. }
  17. }
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment