userAttributes.graphql 528 B

123456789101112131415161718192021222324252627282930313233343536
  1. fragment userAttributes on User {
  2. id
  3. internalId
  4. firstname
  5. lastname
  6. fullname
  7. image
  8. outOfOffice
  9. outOfOfficeStartAt
  10. outOfOfficeEndAt
  11. outOfOfficeReplacement {
  12. id
  13. internalId
  14. firstname
  15. lastname
  16. fullname
  17. login
  18. phone
  19. email
  20. }
  21. preferences
  22. ...userPersonalSettings
  23. objectAttributeValues {
  24. ...objectAttributeValues
  25. }
  26. organization {
  27. id
  28. internalId
  29. name
  30. active
  31. objectAttributeValues {
  32. ...objectAttributeValues
  33. }
  34. }
  35. hasSecondaryOrganizations
  36. }