userDetailAttributes.graphql 401 B

12345678910111213141516171819202122232425262728293031323334
  1. fragment userDetailAttributes on User {
  2. id
  3. internalId
  4. firstname
  5. lastname
  6. fullname
  7. image
  8. email
  9. web
  10. vip
  11. phone
  12. mobile
  13. fax
  14. note
  15. active
  16. objectAttributeValues {
  17. ...objectAttributeValues
  18. }
  19. organization {
  20. id
  21. internalId
  22. name
  23. active
  24. ticketsCount {
  25. open
  26. closed
  27. }
  28. }
  29. hasSecondaryOrganizations
  30. ticketsCount {
  31. open
  32. closed
  33. }
  34. }