userDetailAttributes.graphql 603 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. outOfOffice
  13. mobile
  14. fax
  15. note
  16. active
  17. objectAttributeValues {
  18. ...objectAttributeValues
  19. }
  20. organization {
  21. id
  22. internalId
  23. name
  24. active
  25. vip
  26. ticketsCount {
  27. open
  28. closed
  29. }
  30. }
  31. secondaryOrganizations(first: $secondaryOrganizationsCount) {
  32. edges {
  33. node {
  34. id
  35. internalId
  36. active
  37. name
  38. }
  39. }
  40. totalCount
  41. }
  42. hasSecondaryOrganizations
  43. ticketsCount {
  44. open
  45. closed
  46. }
  47. }