userDetailAttributes.graphql 643 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. fragment userDetailAttributes on User {
  2. id
  3. internalId
  4. firstname
  5. lastname
  6. fullname
  7. outOfOffice
  8. outOfOfficeStartAt
  9. outOfOfficeEndAt
  10. image
  11. email
  12. web
  13. vip
  14. phone
  15. mobile
  16. fax
  17. note
  18. active
  19. objectAttributeValues {
  20. ...objectAttributeValues
  21. }
  22. organization {
  23. id
  24. internalId
  25. name
  26. active
  27. vip
  28. ticketsCount {
  29. open
  30. closed
  31. }
  32. }
  33. secondaryOrganizations(first: $secondaryOrganizationsCount) {
  34. edges {
  35. node {
  36. id
  37. internalId
  38. active
  39. name
  40. }
  41. }
  42. totalCount
  43. }
  44. hasSecondaryOrganizations
  45. ticketsCount {
  46. open
  47. closed
  48. }
  49. }