ticketArticleAttributes.api.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import * as Types from '../../../../../../shared/graphql/types';
  2. import gql from 'graphql-tag';
  3. export const TicketArticleAttributesFragmentDoc = gql`
  4. fragment ticketArticleAttributes on TicketArticle {
  5. id
  6. internalId
  7. from {
  8. raw
  9. parsed {
  10. name
  11. emailAddress
  12. isSystemAddress
  13. }
  14. }
  15. messageId
  16. to {
  17. raw
  18. parsed {
  19. name
  20. emailAddress
  21. isSystemAddress
  22. }
  23. }
  24. cc {
  25. raw
  26. parsed {
  27. name
  28. emailAddress
  29. isSystemAddress
  30. }
  31. }
  32. subject
  33. replyTo {
  34. raw
  35. parsed {
  36. name
  37. emailAddress
  38. isSystemAddress
  39. }
  40. }
  41. messageId
  42. messageIdMd5
  43. inReplyTo
  44. contentType
  45. references
  46. attachmentsWithoutInline {
  47. internalId
  48. name
  49. size
  50. type
  51. preferences
  52. }
  53. preferences
  54. bodyWithUrls
  55. internal
  56. createdAt
  57. originBy {
  58. id
  59. fullname
  60. }
  61. createdBy {
  62. id
  63. fullname
  64. firstname
  65. lastname
  66. email
  67. authorizations {
  68. provider
  69. uid
  70. username
  71. }
  72. }
  73. type {
  74. name
  75. communication
  76. }
  77. sender {
  78. name
  79. }
  80. securityState {
  81. encryptionMessage
  82. encryptionSuccess
  83. signingMessage
  84. signingSuccess
  85. type
  86. }
  87. }
  88. `;