1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- query ticketsByOverview(
- $overviewId: ID!
- $orderBy: String
- $orderDirection: EnumOrderDirection
- $cursor: String
- $showPriority: Boolean!
- $showUpdatedBy: Boolean!
- $pageSize: Int = 25
- ) {
- ticketsByOverview(
- overviewId: $overviewId
- orderBy: $orderBy
- orderDirection: $orderDirection
- after: $cursor
- first: $pageSize
- ) {
- totalCount
- edges {
- node {
- id
- internalId
- number
- title
- createdAt
- createdBy {
- id
- fullname
- }
- updatedAt
- updatedBy @include(if: $showUpdatedBy) {
- id
- fullname
- }
- customer {
- id
- fullname
- }
- organization {
- id
- name
- }
- state {
- id
- name
- stateType {
- id
- name
- }
- }
- group {
- id
- name
- }
- priority @include(if: $showPriority) {
- id
- name
- uiColor
- }
- objectAttributeValues {
- ...objectAttributeValues
- }
- articleCount
- stateColorCode
- escalationAt
- firstResponseEscalationAt
- updateEscalationAt
- closeEscalationAt
- firstResponseAt
- closeAt
- timeUnit
- lastCloseAt
- lastContactAt
- lastContactAgentAt
- lastContactCustomerAt
- }
- cursor
- }
- pageInfo {
- endCursor
- hasNextPage
- }
- }
- }
|