1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import * as Types from '../../../../../../shared/graphql/types';
- 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
- references
- attachmentsWithoutInline {
- internalId
- name
- size
- type
- preferences
- }
- preferences
- bodyWithUrls
- internal
- createdAt
- originBy {
- id
- fullname
- }
- createdBy {
- id
- fullname
- firstname
- lastname
- email
- authorizations {
- provider
- uid
- username
- }
- }
- type {
- name
- communication
- }
- sender {
- name
- }
- securityState {
- encryptionMessage
- encryptionSuccess
- signingMessage
- signingSuccess
- type
- }
- }
- `;
|