ticketAttributes.graphql 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. fragment ticketAttributes on Ticket {
  2. id
  3. internalId
  4. number
  5. title
  6. createdAt
  7. escalationAt
  8. updatedAt
  9. updatedBy {
  10. id
  11. }
  12. pendingTime
  13. owner {
  14. id
  15. internalId
  16. firstname
  17. lastname
  18. }
  19. customer {
  20. id
  21. internalId
  22. firstname
  23. lastname
  24. fullname
  25. phone
  26. mobile
  27. image
  28. vip
  29. active
  30. outOfOffice
  31. outOfOfficeStartAt
  32. outOfOfficeEndAt
  33. email
  34. organization {
  35. id
  36. internalId
  37. name
  38. active
  39. objectAttributeValues {
  40. ...objectAttributeValues
  41. }
  42. }
  43. hasSecondaryOrganizations
  44. policy {
  45. update
  46. }
  47. }
  48. organization {
  49. id
  50. internalId
  51. name
  52. vip
  53. active
  54. }
  55. state {
  56. id
  57. name
  58. stateType {
  59. id
  60. name
  61. }
  62. }
  63. group {
  64. id
  65. name
  66. emailAddress {
  67. name
  68. emailAddress
  69. }
  70. }
  71. priority {
  72. id
  73. name
  74. defaultCreate
  75. uiColor
  76. }
  77. objectAttributeValues {
  78. ...objectAttributeValues
  79. }
  80. policy {
  81. update
  82. agentReadAccess
  83. }
  84. tags
  85. timeUnit
  86. timeUnitsPerType {
  87. name
  88. timeUnit
  89. }
  90. subscribed
  91. preferences
  92. stateColorCode
  93. sharedDraftZoomId
  94. firstResponseEscalationAt
  95. closeEscalationAt
  96. updateEscalationAt
  97. initialChannel
  98. externalReferences {
  99. github
  100. gitlab
  101. }
  102. }