12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- export const TicketArticleAttributesFragmentDoc = gql`
- fragment ticketArticleAttributes on TicketArticle {
- id
- internalId
- from {
- raw
- parsed {
- name
- emailAddress
- isSystemAddress
- }
- }
- messageId
- to {
- raw
- parsed {
- name
- emailAddress
- isSystemAddress
- }
- }
- cc {
- raw
- parsed {
- name
- emailAddress
- isSystemAddress
- }
- }
- subject
- replyTo {
- raw
- parsed {
- name
- emailAddress
- isSystemAddress
- }
- }
- messageId
- messageIdMd5
- inReplyTo
- contentType
- attachmentsWithoutInline {
- id
- internalId
- name
- size
- type
- preferences
- }
- preferences
- bodyWithUrls
- internal
- createdAt
- author {
- id
- fullname
- firstname
- lastname
- email
- active
- image
- vip
- outOfOffice
- outOfOfficeStartAt
- outOfOfficeEndAt
- authorizations {
- provider
- uid
- username
- }
- }
- type {
- name
- communication
- }
- sender {
- name
- }
- securityState {
- encryptionMessage
- encryptionSuccess
- signingMessage
- signingSuccess
- type
- }
- mediaErrorState {
- error
- }
- }
- `;
|