userAttributes.graphql 325 B

12345678910111213141516171819202122
  1. fragment userAttributes on User {
  2. id
  3. internalId
  4. firstname
  5. lastname
  6. fullname
  7. image
  8. preferences
  9. objectAttributeValues {
  10. ...objectAttributeValues
  11. }
  12. organization {
  13. id
  14. internalId
  15. name
  16. active
  17. objectAttributeValues {
  18. ...objectAttributeValues
  19. }
  20. }
  21. hasSecondaryOrganizations
  22. }