Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. query {
  2. organization(login: "se-saml") {
  3. auditLog(first: 50) {
  4. edges {
  5. node {
  6. ... on RepositoryAuditEntryData {
  7. repository {
  8. name
  9. }
  10. }
  11. ... on OrganizationAuditEntryData {
  12. organization {
  13. name
  14. }
  15. }
  16.  
  17. ... on TeamAuditEntryData {
  18. teamName
  19. }
  20.  
  21. ... on BusinessAuditEntryData {
  22. businessUrl
  23. }
  24.  
  25. ... on OauthApplicationAuditEntryData {
  26. oauthApplicationName
  27. }
  28.  
  29. ... on AuditEntry {
  30. actorResourcePath
  31. action
  32. actorIp
  33. actorLogin
  34. createdAt
  35. actorLocation {
  36. countryCode
  37. country
  38. regionCode
  39. region
  40. city
  41. }
  42. }
  43. }
  44. cursor
  45. }
  46. }
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement