123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- import { ObjectAttributeValuesFragmentDoc } from '../../../../graphql/fragments/objectAttributeValues.api';
- export const TicketAttributesFragmentDoc = gql`
- fragment ticketAttributes on Ticket {
- id
- internalId
- number
- title
- createdAt
- escalationAt
- updatedAt
- updatedBy {
- id
- }
- pendingTime
- owner {
- id
- internalId
- firstname
- lastname
- }
- customer {
- id
- internalId
- firstname
- lastname
- fullname
- phone
- mobile
- image
- vip
- active
- outOfOffice
- outOfOfficeStartAt
- outOfOfficeEndAt
- email
- organization {
- id
- internalId
- name
- active
- objectAttributeValues {
- ...objectAttributeValues
- }
- }
- hasSecondaryOrganizations
- policy {
- update
- }
- }
- organization {
- id
- internalId
- name
- vip
- active
- }
- state {
- id
- name
- stateType {
- id
- name
- }
- }
- group {
- id
- name
- emailAddress {
- name
- emailAddress
- }
- }
- priority {
- id
- name
- defaultCreate
- uiColor
- }
- objectAttributeValues {
- ...objectAttributeValues
- }
- policy {
- update
- agentReadAccess
- }
- tags
- timeUnit
- timeUnitsPerType {
- name
- timeUnit
- }
- subscribed
- preferences
- stateColorCode
- sharedDraftZoomId
- firstResponseEscalationAt
- closeEscalationAt
- updateEscalationAt
- initialChannel
- externalReferences {
- github
- gitlab
- }
- }
- ${ObjectAttributeValuesFragmentDoc}`;
|