12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- import { ObjectAttributeValuesFragmentDoc } from '../../../../../../shared/graphql/fragments/objectAttributeValues.api';
- export const TicketAttributesFragmentDoc = gql`
- fragment ticketAttributes on Ticket {
- id
- internalId
- number
- title
- createdAt
- escalationAt
- updatedAt
- pendingTime
- owner {
- id
- internalId
- firstname
- lastname
- }
- customer {
- id
- internalId
- firstname
- lastname
- fullname
- phone
- mobile
- image
- vip
- active
- outOfOffice
- email
- organization {
- id
- internalId
- name
- active
- objectAttributeValues {
- ...objectAttributeValues
- }
- }
- hasSecondaryOrganizations
- policy {
- update
- }
- }
- organization {
- id
- internalId
- name
- vip
- active
- }
- state {
- id
- name
- stateType {
- 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
- firstResponseEscalationAt
- closeEscalationAt
- updateEscalationAt
- initialChannel
- }
- ${ObjectAttributeValuesFragmentDoc}`;
|