ticketAttributes.graphql 1.2 KB

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